add gpu clk

Signed-off-by: Xuhui Zhu <simon.zhu@canonical.com>
This commit is contained in:
Xuhui Zhu 2024-08-22 16:42:48 -04:00 committed by Johannes 'fish' Ziemke
parent 3ed9edfde7
commit 6f3c345632

View file

@ -44,7 +44,7 @@ var (
hwmonSensorTypes = []string{ hwmonSensorTypes = []string{
"vrm", "beep_enable", "update_interval", "in", "cpu", "fan", "vrm", "beep_enable", "update_interval", "in", "cpu", "fan",
"pwm", "temp", "curr", "power", "energy", "humidity", "pwm", "temp", "curr", "power", "energy", "humidity",
"intrusion", "intrusion", "freq",
} }
) )
@ -357,6 +357,15 @@ func (c *hwMonCollector) updateHwmon(ch chan<- prometheus.Metric, dir string) er
continue continue
} }
if sensorType == "freq" && element == "input" {
if label, ok := sensorData["label"]; ok {
sensorLabel := cleanMetricName(label)
desc := prometheus.NewDesc("node_hwmon_freq_hertz", "Hardware monitor for GPU frequency in MHz", hwmonLabelDesc, nil)
ch <- prometheus.MustNewConstMetric(
desc, prometheus.GaugeValue, parsedValue/1000000.0, append(labels[:len(labels)-1], sensorLabel)...)
}
continue
}
// fallback, just dump the metric as is // fallback, just dump the metric as is
desc := prometheus.NewDesc(name, "Hardware monitor "+sensorType+" element "+element, hwmonLabelDesc, nil) desc := prometheus.NewDesc(name, "Hardware monitor "+sensorType+" element "+element, hwmonLabelDesc, nil)