mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-15 10:15:18 +01:00
3b33400d24
* Add health collector for voltage & temperature * Run gofmt * Add help text to health collector
94 lines
2.2 KiB
Go
94 lines
2.2 KiB
Go
package collector
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
log "github.com/sirupsen/logrus"
|
|
"gopkg.in/routeros.v2/proto"
|
|
)
|
|
|
|
type healthCollector struct {
|
|
props []string
|
|
descriptions map[string]*prometheus.Desc
|
|
}
|
|
|
|
func newhealthCollector() routerOSCollector {
|
|
c := &healthCollector{}
|
|
c.init()
|
|
return c
|
|
}
|
|
|
|
func (c *healthCollector) init() {
|
|
c.props = []string{"voltage", "temperature"}
|
|
|
|
labelNames := []string{"name", "address"}
|
|
helpText := []string{"Input voltage to the RouterOS board, in volts", "Temperature of RouterOS board, in degrees Celsius"}
|
|
c.descriptions = make(map[string]*prometheus.Desc)
|
|
for i, p := range c.props {
|
|
c.descriptions[p] = descriptionForPropertyNameHelpText("health", p, labelNames, helpText[i])
|
|
}
|
|
}
|
|
|
|
func (c *healthCollector) describe(ch chan<- *prometheus.Desc) {
|
|
for _, d := range c.descriptions {
|
|
ch <- d
|
|
}
|
|
}
|
|
|
|
func (c *healthCollector) collect(ctx *collectorContext) error {
|
|
stats, err := c.fetch(ctx)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
for _, re := range stats {
|
|
c.collectForStat(re, ctx)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *healthCollector) fetch(ctx *collectorContext) ([]*proto.Sentence, error) {
|
|
reply, err := ctx.client.Run("/system/health/print", "=.proplist="+strings.Join(c.props, ","))
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"error": err,
|
|
}).Error("error fetching system health metrics")
|
|
return nil, err
|
|
}
|
|
|
|
return reply.Re, nil
|
|
}
|
|
|
|
func (c *healthCollector) collectForStat(re *proto.Sentence, ctx *collectorContext) {
|
|
for _, p := range c.props[:2] {
|
|
c.collectMetricForProperty(p, re, ctx)
|
|
}
|
|
}
|
|
|
|
func (c *healthCollector) collectMetricForProperty(property string, re *proto.Sentence, ctx *collectorContext) {
|
|
var v float64
|
|
var err error
|
|
|
|
if re.Map[property] == "" {
|
|
return
|
|
}
|
|
v, err = strconv.ParseFloat(re.Map[property], 64)
|
|
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"property": property,
|
|
"value": re.Map[property],
|
|
"error": err,
|
|
}).Error("error parsing system health metric value")
|
|
return
|
|
}
|
|
|
|
desc := c.descriptions[property]
|
|
ctx.ch <- prometheus.MustNewConstMetric(desc, prometheus.GaugeValue, v, ctx.device.Name, ctx.device.Address)
|
|
}
|