mirror of
https://github.com/nshttpd/mikrotik-exporter.git
synced 2024-11-24 11:37:04 +01:00
5cea9840a7
Allow the collection of w60g interface statistics.
147 lines
4.1 KiB
Go
147 lines
4.1 KiB
Go
package collector
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
log "github.com/sirupsen/logrus"
|
|
"gopkg.in/routeros.v2/proto"
|
|
)
|
|
|
|
type w60gInterfaceCollector struct {
|
|
frequencyDesc *prometheus.Desc
|
|
txMCSDesc *prometheus.Desc
|
|
txPHYRateDesc *prometheus.Desc
|
|
signalDesc *prometheus.Desc
|
|
rssiDesc *prometheus.Desc
|
|
txSectorDesc *prometheus.Desc
|
|
txDistanceDesc *prometheus.Desc
|
|
txPacketErrorRateDesc *prometheus.Desc
|
|
props []string
|
|
}
|
|
|
|
func (c *w60gInterfaceCollector) describe(ch chan<- *prometheus.Desc) {
|
|
ch <- c.frequencyDesc
|
|
ch <- c.txMCSDesc
|
|
ch <- c.txPHYRateDesc
|
|
ch <- c.signalDesc
|
|
ch <- c.rssiDesc
|
|
ch <- c.txSectorDesc
|
|
ch <- c.txDistanceDesc
|
|
ch <- c.txPacketErrorRateDesc
|
|
}
|
|
func (c *w60gInterfaceCollector) collect(ctx *collectorContext) error {
|
|
reply, err := ctx.client.Run("/interface/w60g/print", "=.proplist=name")
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"error": err,
|
|
}).Error("error fetching w60g interface metrics")
|
|
return err
|
|
}
|
|
|
|
ifaces := make([]string, 0)
|
|
for _, iface := range reply.Re {
|
|
n := iface.Map["name"]
|
|
ifaces = append(ifaces, n)
|
|
}
|
|
|
|
if len(ifaces) == 0 {
|
|
return nil
|
|
}
|
|
|
|
return c.collectw60gMetricsForInterfaces(ifaces, ctx)
|
|
}
|
|
func (c *w60gInterfaceCollector) collectw60gMetricsForInterfaces(ifaces []string, ctx *collectorContext) error {
|
|
reply, err := ctx.client.Run("/interface/w60g/monitor",
|
|
"=numbers="+strings.Join(ifaces, ","),
|
|
"=once=",
|
|
"=.proplist=name,"+strings.Join(c.props, ","))
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"error": err,
|
|
}).Error("error fetching w60g interface monitor metrics")
|
|
return err
|
|
}
|
|
for _, se := range reply.Re {
|
|
name, ok := se.Map["name"]
|
|
if !ok {
|
|
continue
|
|
}
|
|
|
|
c.collectMetricsForw60gInterface(name, se, ctx)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (c *w60gInterfaceCollector) collectMetricsForw60gInterface(name string, se *proto.Sentence, ctx *collectorContext) {
|
|
for _, prop := range c.props {
|
|
v, ok := se.Map[prop]
|
|
if !ok {
|
|
continue
|
|
}
|
|
if v == "" {
|
|
continue
|
|
}
|
|
value, err := strconv.ParseFloat(v, 64)
|
|
if err != nil {
|
|
log.WithFields(log.Fields{
|
|
"device": ctx.device.Name,
|
|
"interface": name,
|
|
"property": prop,
|
|
"error": err,
|
|
}).Error("error parsing w60g interface monitor metric")
|
|
return
|
|
}
|
|
|
|
ctx.ch <- prometheus.MustNewConstMetric(c.descForKey(prop), prometheus.GaugeValue, value, ctx.device.Name, ctx.device.Address, name)
|
|
}
|
|
}
|
|
|
|
func neww60gInterfaceCollector() routerOSCollector {
|
|
const prefix = "w60ginterface"
|
|
|
|
labelNames := []string{"name", "address", "interface"}
|
|
return &w60gInterfaceCollector{
|
|
frequencyDesc: description(prefix, "frequency", "frequency of tx in MHz", labelNames),
|
|
txMCSDesc: description(prefix, "txMCS", "TX MCS", labelNames),
|
|
txPHYRateDesc: description(prefix, "txPHYRate", "PHY Rate in bps", labelNames),
|
|
signalDesc: description(prefix, "signal", "Signal quality in %", labelNames),
|
|
rssiDesc: description(prefix, "rssi", "Signal RSSI in dB", labelNames),
|
|
txSectorDesc: description(prefix, "txSector", "TX Sector", labelNames),
|
|
txDistanceDesc: description(prefix, "txDistance", "Distance to remote", labelNames),
|
|
txPacketErrorRateDesc: description(prefix, "txPacketErrorRate", "TX Packet Error Rate", labelNames),
|
|
props: []string{"signal", "rssi", "tx-mcs", "frequency", "tx-phy-rate", "tx-sector", "distance", "tx-packet-error-rate"},
|
|
}
|
|
}
|
|
|
|
func (c *w60gInterfaceCollector) valueForKey(name, value string) (float64, error) {
|
|
return strconv.ParseFloat(value, 64)
|
|
}
|
|
|
|
func (c *w60gInterfaceCollector) descForKey(name string) *prometheus.Desc {
|
|
switch name {
|
|
case "signal":
|
|
return c.signalDesc
|
|
case "rssi":
|
|
return c.rssiDesc
|
|
case "tx-mcs":
|
|
return c.txMCSDesc
|
|
case "tx-phy-rate":
|
|
return c.txPHYRateDesc
|
|
case "frequency":
|
|
return c.frequencyDesc
|
|
case "tx-sector":
|
|
return c.txSectorDesc
|
|
case "distance":
|
|
return c.txDistanceDesc
|
|
case "tx-packet-error-rate":
|
|
return c.txPacketErrorRateDesc
|
|
}
|
|
|
|
return nil
|
|
}
|