forked from prometheus-community/ipmi_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollector_sm_lan_mode.go
61 lines (49 loc) · 1.56 KB
/
collector_sm_lan_mode.go
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
package main
import (
"fmt"
"strconv"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/log"
"github.com/soundcloud/ipmi_exporter/freeipmi"
)
const (
SMLANModeCollectorName CollectorName = "sm-lan-mode"
)
var (
lanModeDesc = prometheus.NewDesc(
prometheus.BuildFQName(namespace, "config", "lan_mode"),
"Returns configured LAN mode (0=dedicated, 1=shared, 2=failover).",
nil,
nil,
)
)
type SMLANModeCollector struct{}
func (c SMLANModeCollector) Name() CollectorName {
return SMLANModeCollectorName
}
func (c SMLANModeCollector) Cmd() string {
return "ipmi-raw"
}
func (c SMLANModeCollector) Args() []string {
return []string{"0x0", "0x30", "0x70", "0x0c", "0"}
}
func (c SMLANModeCollector) Collect(result freeipmi.Result, ch chan<- prometheus.Metric, target ipmiTarget) (int, error) {
octets, err := freeipmi.GetRawOctets(result)
if err != nil {
log.Errorf("Failed to collect LAN mode data from %s: %s", targetName(target.host), err)
return 0, err
}
if len(octets) != 3 {
log.Errorf("Unexpected number of octets from %s: %+v", targetName(target.host), octets)
return 0, fmt.Errorf("unexpected number of octects in raw response: %d", len(octets))
}
switch octets[2] {
case "00", "01", "02":
value, _ := strconv.Atoi(octets[2])
ch <- prometheus.MustNewConstMetric(lanModeDesc, prometheus.GaugeValue, float64(value))
default:
log.Errorf("Unexpected lan mode status (ipmi-raw) from %s: %+v", targetName(target.host), octets[2])
return 0, fmt.Errorf("unexpected lan mode status: %s", octets[2])
}
return 1, nil
}