xmtop/devices/temp_linux.go
2021-01-27 09:06:09 -06:00

48 lines
1003 B
Go

// +build linux
package devices
import (
"log"
"strings"
"github.com/shirou/gopsutil/host"
)
// All possible thermometers
func devs() []string {
if sensorMap == nil {
sensorMap = make(map[string]string)
}
sensors, err := host.SensorsTemperatures()
if err != nil {
log.Printf("gopsutil reports %s", err)
if len(sensors) == 0 {
log.Printf("no temperature sensors returned")
return []string{}
}
}
rv := make([]string, 0, len(sensors))
for _, sensor := range sensors {
label := sensor.SensorKey
label = strings.TrimSuffix(sensor.SensorKey, "_input")
label = strings.TrimSuffix(label, "_thermal")
rv = append(rv, label)
sensorMap[sensor.SensorKey] = label
}
return rv
}
// Only include sensors with input in their name; these are the only sensors
// returning live data
func defs() []string {
// MUST be called AFTER init()
rv := make([]string, 0)
for k, v := range sensorMap {
if k != v { // then it's an _input sensor
rv = append(rv, v)
}
}
return rv
}