summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/windows/collect_thermalzone.go
blob: 578ebef9fd72ede44df41f8a011df9c21408e7c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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:]
}