mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2025-01-21 20:41:45 +01:00
beb09ce540
* fix import name conflict * adding in ethernet monitor information via prometheus gauge * set CGO_ENABLED env var on build
124 lines
2.7 KiB
Go
124 lines
2.7 KiB
Go
package collector
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"gopkg.in/routeros.v2/proto"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
type monitorCollector struct {
|
|
props []string // props from monitor, can add other ether props later if needed
|
|
descriptions map[string]*prometheus.Desc
|
|
}
|
|
|
|
func newMonitorCollector() routerOSCollector {
|
|
c := &monitorCollector{}
|
|
c.init()
|
|
return c
|
|
}
|
|
|
|
func (c *monitorCollector) init() {
|
|
c.props = []string{"status", "rate", "full-duplex"}
|
|
labelNames := []string{"name", "address", "interface"}
|
|
c.descriptions = make(map[string]*prometheus.Desc)
|
|
for _, p := range c.props {
|
|
c.descriptions[p] = descriptionForPropertyName("monitor", p, labelNames)
|
|
}
|
|
}
|
|
|
|
func (c *monitorCollector) describe(ch chan<- *prometheus.Desc) {
|
|
for _, d := range c.descriptions {
|
|
ch <- d
|
|
}
|
|
}
|
|
|
|
func (c *monitorCollector) collect(ctx *collectorContext) error {
|
|
reply, err := ctx.client.Run("/interface/ethernet/print", "=.proplist=name")
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"error": err,
|
|
}).Error("error fetching ethernet interfaces")
|
|
return err
|
|
}
|
|
|
|
eths := make([]string, len(reply.Re))
|
|
for idx, eth := range reply.Re {
|
|
eths[idx] = eth.Map["name"]
|
|
}
|
|
|
|
return c.collectForMonitor(eths, ctx)
|
|
}
|
|
|
|
func (c *monitorCollector) collectForMonitor(eths []string, ctx *collectorContext) error {
|
|
reply, err := ctx.client.Run("/interface/ethernet/monitor",
|
|
"=numbers="+strings.Join(eths, ","),
|
|
"=once=",
|
|
"=.proplist=name,"+strings.Join(c.props, ","))
|
|
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"error": err,
|
|
}).Error("error fetching ethernet monitor info")
|
|
return err
|
|
}
|
|
|
|
for _, e := range reply.Re {
|
|
c.collectMetricsForEth(e.Map["name"], e, ctx)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *monitorCollector) collectMetricsForEth(name string, se *proto.Sentence, ctx *collectorContext) {
|
|
for _, prop := range c.props {
|
|
v, ok := se.Map[prop]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
value := float64(c.valueForProp(prop, v))
|
|
|
|
ctx.ch <- prometheus.MustNewConstMetric(c.descriptions[prop], prometheus.GaugeValue, value, ctx.device.Name, ctx.device.Address, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func (c *monitorCollector) valueForProp(name, value string) int {
|
|
switch {
|
|
case name == "status":
|
|
return func(v string) int {
|
|
if v == "link-ok" {
|
|
return 1
|
|
}
|
|
return 0
|
|
}(value)
|
|
case name == "rate":
|
|
return func(v string) int {
|
|
switch {
|
|
case v == "10Mbps":
|
|
return 10
|
|
case v == "100Mbps":
|
|
return 100
|
|
case v == "1Gbps":
|
|
return 1000
|
|
}
|
|
return 0
|
|
}(value)
|
|
case name == "full-duplex":
|
|
return func(v string) int {
|
|
if v == "true" {
|
|
return 1
|
|
}
|
|
return 0
|
|
}(value)
|
|
default:
|
|
return 0
|
|
}
|
|
}
|