node.js の systeminformation を使用して CPU 温度を取得しようとしていますが、出力に null 値が表示されます。CPU情報を取得する前にセンサーもインストールしました
このアプリケーションは AWS EC2 インスタンスで実行されています
import si from 'systeminformation'
import { execSync } from 'child_process'
let output=execSync('sudo apt-get install lm-sensors')
const temperature = await si.cpuTemperature()
console.log(temperature)
出力:
{ main: null, cores: [], max: null, socket: [], chipset: null }