mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-16 10:25:12 +01:00
96 lines
2.3 KiB
Go
96 lines
2.3 KiB
Go
package collector
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
log "github.com/sirupsen/logrus"
|
|
"gopkg.in/routeros.v2/proto"
|
|
)
|
|
|
|
type netwatchCollector struct {
|
|
props []string
|
|
descriptions map[string]*prometheus.Desc
|
|
}
|
|
|
|
func newNetwatchCollector() routerOSCollector {
|
|
c := &netwatchCollector{}
|
|
c.init()
|
|
return c
|
|
}
|
|
|
|
func (c *netwatchCollector) init() {
|
|
c.props = []string{"host", "comment", "status"}
|
|
labelNames := []string{"name", "address", "host", "comment"}
|
|
c.descriptions = make(map[string]*prometheus.Desc)
|
|
for _, p := range c.props[1:] {
|
|
c.descriptions[p] = descriptionForPropertyName("netwatch", p, labelNames)
|
|
}
|
|
}
|
|
|
|
func (c *netwatchCollector) describe(ch chan<- *prometheus.Desc) {
|
|
for _, d := range c.descriptions {
|
|
ch <- d
|
|
}
|
|
}
|
|
|
|
func (c *netwatchCollector) 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 *netwatchCollector) fetch(ctx *collectorContext) ([]*proto.Sentence, error) {
|
|
reply, err := ctx.client.Run("/tool/netwatch/print", "?disabled=false", "=.proplist="+strings.Join(c.props, ","))
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"error": err,
|
|
}).Error("error fetching netwatch metrics")
|
|
return nil, err
|
|
}
|
|
|
|
return reply.Re, nil
|
|
}
|
|
|
|
func (c *netwatchCollector) collectForStat(re *proto.Sentence, ctx *collectorContext) {
|
|
host := re.Map["host"]
|
|
comment := re.Map["comment"]
|
|
|
|
for _, p := range c.props[2:] {
|
|
c.collectMetricForProperty(p, host, comment, re, ctx)
|
|
}
|
|
}
|
|
|
|
func (c *netwatchCollector) collectMetricForProperty(property, host, comment string, re *proto.Sentence, ctx *collectorContext) {
|
|
desc := c.descriptions[property]
|
|
if value := re.Map[property]; value != "" {
|
|
var numericValue float64
|
|
switch value {
|
|
case "up":
|
|
numericValue = 1
|
|
case "unknown":
|
|
numericValue = 0
|
|
case "down":
|
|
numericValue = -1
|
|
default:
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"host": host,
|
|
"property": property,
|
|
"value": value,
|
|
"error": fmt.Errorf("unexpected netwatch status value"),
|
|
}).Error("error parsing netwatch metric value")
|
|
}
|
|
ctx.ch <- prometheus.MustNewConstMetric(desc, prometheus.CounterValue, numericValue, ctx.device.Name, ctx.device.Address, host, comment)
|
|
}
|
|
}
|