summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 11:19:16 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-07-24 09:53:24 +0000
commitb5f8ee61a7f7e9bd291dd26b0585d03eb686c941 (patch)
treed4d31289c39fc00da064a825df13a0b98ce95b10 /src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go
parentAdding upstream version 1.44.3. (diff)
downloadnetdata-b5f8ee61a7f7e9bd291dd26b0585d03eb686c941.tar.xz
netdata-b5f8ee61a7f7e9bd291dd26b0585d03eb686c941.zip
Adding upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go b/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go
new file mode 100644
index 000000000..578ebef9f
--- /dev/null
+++ b/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go
@@ -0,0 +1,45 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
+package windows
+
+import (
+ "strings"
+
+ "github.com/netdata/netdata/go/go.d.plugin/pkg/prometheus"
+)
+
+const (
+ metricThermalzoneTemperatureCelsius = "windows_thermalzone_temperature_celsius"
+)
+
+func (w *Windows) collectThermalzone(mx map[string]int64, pms prometheus.Series) {
+ seen := make(map[string]bool)
+ for _, pm := range pms.FindByName(metricThermalzoneTemperatureCelsius) {
+ if name := cleanZoneName(pm.Labels.Get("name")); name != "" {
+ seen[name] = true
+ mx["thermalzone_"+name+"_temperature"] = int64(pm.Value)
+ }
+ }
+
+ for zone := range seen {
+ if !w.cache.thermalZones[zone] {
+ w.cache.thermalZones[zone] = true
+ w.addThermalZoneCharts(zone)
+ }
+ }
+ for zone := range w.cache.thermalZones {
+ if !seen[zone] {
+ delete(w.cache.thermalZones, zone)
+ w.removeThermalZoneCharts(zone)
+ }
+ }
+}
+
+func cleanZoneName(name string) string {
+ // "\\_TZ.TZ10", "\\_TZ.X570" => TZ10, X570
+ i := strings.Index(name, ".")
+ if i == -1 || len(name) == i+1 {
+ return ""
+ }
+ return name[i+1:]
+}