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", "cpu-temperature"} labelNames := []string{"name", "address"} helpText := []string{"Input voltage to the RouterOS board, in volts", "Temperature of RouterOS board, in degrees Celsius", "Temperature of RouterOS CPU, 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[:3] { 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) }