summaryrefslogtreecommitdiffstats
path: root/src/go/collectors/go.d.plugin/modules/sensors/collect.go
blob: 46e900ad0a31a6a668980b07065e8991f41a4dca (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// SPDX-License-Identifier: GPL-3.0-or-later

package sensors

import (
	"bufio"
	"bytes"
	"errors"
	"fmt"
	"strconv"
	"strings"
)

type sensorStats struct {
	chip       string
	feature    string
	subfeature string
	value      string
}

func (s *sensorStats) String() string {
	return fmt.Sprintf("chip:%s feat:%s subfeat:%s value:%s", s.chip, s.feature, s.subfeature, s.value)
}

const (
	sensorTypeTemp     = "temperature"
	sensorTypeVoltage  = "voltage"
	sensorTypePower    = "power"
	sensorTypeHumidity = "humidity"
	sensorTypeFan      = "fan"
	sensorTypeCurrent  = "current"
	sensorTypeEnergy   = "energy"
)

const precision = 1000

func (s *Sensors) collect() (map[string]int64, error) {
	bs, err := s.exec.sensorsInfo()
	if err != nil {
		return nil, err
	}

	if len(bs) == 0 {
		return nil, errors.New("empty response from sensors")
	}

	sensors, err := parseSensors(bs)
	if err != nil {
		return nil, err
	}
	if len(sensors) == 0 {
		return nil, errors.New("no sensors found")
	}

	mx := make(map[string]int64)
	seen := make(map[string]bool)

	for _, sn := range sensors {
		// TODO: Most likely we need different values depending on the type of sensor.
		if !strings.HasSuffix(sn.subfeature, "_input") {
			s.Debugf("skipping non input sensor: '%s'", sn)
			continue
		}

		v, err := strconv.ParseFloat(sn.value, 64)
		if err != nil {
			s.Debugf("parsing value for sensor '%s': %v", sn, err)
			continue
		}

		if sensorType(sn) == "" {
			s.Debugf("can not find type for sensor '%s'", sn)
			continue
		}

		if minVal, maxVal, ok := sensorLimits(sn); ok && (v < minVal || v > maxVal) {
			s.Debugf("value outside limits [%d/%d] for sensor '%s'", int64(minVal), int64(maxVal), sn)
			continue
		}

		key := fmt.Sprintf("sensor_chip_%s_feature_%s_subfeature_%s", sn.chip, sn.feature, sn.subfeature)
		key = snakeCase(key)
		if !s.sensors[key] {
			s.sensors[key] = true
			s.addSensorChart(sn)
		}

		seen[key] = true

		mx[key] = int64(v * precision)
	}

	for k := range s.sensors {
		if !seen[k] {
			delete(s.sensors, k)
			s.removeSensorChart(k)
		}
	}

	return mx, nil
}

func snakeCase(n string) string {
	return strings.ToLower(strings.ReplaceAll(n, " ", "_"))
}

func sensorLimits(sn sensorStats) (minVal float64, maxVal float64, ok bool) {
	switch sensorType(sn) {
	case sensorTypeTemp:
		return -127, 1000, true
	case sensorTypeVoltage:
		return -400, 400, true
	case sensorTypeCurrent:
		return -127, 127, true
	case sensorTypeFan:
		return 0, 65535, true
	default:
		return 0, 0, false
	}
}

func sensorType(sn sensorStats) string {
	switch {
	case strings.HasPrefix(sn.subfeature, "temp"):
		return sensorTypeTemp
	case strings.HasPrefix(sn.subfeature, "in"):
		return sensorTypeVoltage
	case strings.HasPrefix(sn.subfeature, "power"):
		return sensorTypePower
	case strings.HasPrefix(sn.subfeature, "humidity"):
		return sensorTypeHumidity
	case strings.HasPrefix(sn.subfeature, "fan"):
		return sensorTypeFan
	case strings.HasPrefix(sn.subfeature, "curr"):
		return sensorTypeCurrent
	case strings.HasPrefix(sn.subfeature, "energy"):
		return sensorTypeEnergy
	default:
		return ""
	}
}

func parseSensors(output []byte) ([]sensorStats, error) {
	var sensors []sensorStats

	sc := bufio.NewScanner(bytes.NewReader(output))

	var chip, feat string

	for sc.Scan() {
		text := sc.Text()
		if text == "" {
			chip, feat = "", ""
			continue
		}

		switch {
		case strings.HasPrefix(text, "  ") && chip != "" && feat != "":
			parts := strings.Split(text, ":")
			if len(parts) != 2 {
				continue
			}
			subfeat, value := strings.TrimSpace(parts[0]), strings.TrimSpace(parts[1])
			sensors = append(sensors, sensorStats{
				chip:       chip,
				feature:    feat,
				subfeature: subfeat,
				value:      value,
			})
		case strings.HasSuffix(text, ":") && chip != "":
			feat = strings.TrimSpace(strings.TrimSuffix(text, ":"))
		default:
			chip = text
			feat = ""
		}
	}

	return sensors, nil
}