- Monitor
- path: /monitor
- method: GET
- data
- format: json object
- fields:
- cpu_temperature: double (string) or null, Celsius
- fan_speed: unsigned or null, RPM
- example:
javascript { "cpu_temperature":"43.00", "fan_speed":5470, }
- Monitor NVME
- path: /monitor/nvme
- method: GET
- data
- format: json object
- fields:
- temperature: double (string), Celsius
- critical_warnings: unsigned
- available_spare: unsigned
- available_spare_threshold: unsigned
- percentage_used: unsigned
- example:
javascript { "temperature":"54.00", "critical_warnings":0, "available_spare":100, "available_spare_threshold":10, "percentage_used":0 }
Back to Index