试图获取 cpu 温度系统信息 npm 库
trying to get cpu temperature systeminformation npm library
我正在尝试使用 node.js 中的系统信息获取 CPU 温度,但在输出中获取空值。
在获取 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 }
AWS EC2 不会透露其 CPU 温度。但这应该适用于任何本地机器。
我正在尝试使用 node.js 中的系统信息获取 CPU 温度,但在输出中获取空值。 在获取 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 }
AWS EC2 不会透露其 CPU 温度。但这应该适用于任何本地机器。