Added basic prometheus export for global fastd statistics
This commit is contained in:
parent
d553dd436a
commit
38b28b7a1e
|
@ -2,6 +2,7 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"flag"
|
"flag"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
|
@ -9,12 +10,11 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"net/http"
|
"net/http"
|
||||||
"regexp"
|
"regexp"
|
||||||
"strings"
|
|
||||||
"time"
|
"time"
|
||||||
"errors"
|
|
||||||
|
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||||
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
@ -38,7 +38,7 @@ type Statistics struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Message struct {
|
type Message struct {
|
||||||
Uptime float64 `json:"uptime"`
|
Uptime float64 `json:"uptime"`
|
||||||
Interface string `json:"interface"`
|
Interface string `json:"interface"`
|
||||||
Statistics Statistics `json:"statistics"`
|
Statistics Statistics `json:"statistics"`
|
||||||
Peers map[string]Peer `json:"peers"`
|
Peers map[string]Peer `json:"peers"`
|
||||||
|
@ -55,16 +55,85 @@ type Peer struct {
|
||||||
MAC []string `json:"mac_addresses"`
|
MAC []string `json:"mac_addresses"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
// register metrics
|
// register metrics
|
||||||
}
|
}
|
||||||
|
|
||||||
func Update(sock string) {
|
type PrometheusExporter struct {
|
||||||
data := data_from_sock(sock)
|
SocketName string
|
||||||
|
|
||||||
|
uptime *prometheus.Desc
|
||||||
|
|
||||||
|
rxPackets *prometheus.Desc
|
||||||
|
rxBytes *prometheus.Desc
|
||||||
|
|
||||||
|
rxReorderedPackets *prometheus.Desc
|
||||||
|
rxReorderedBytes *prometheus.Desc
|
||||||
|
|
||||||
|
txPackets *prometheus.Desc
|
||||||
|
txBytes *prometheus.Desc
|
||||||
|
|
||||||
|
txDroppedPackets *prometheus.Desc
|
||||||
|
txDroppedBytes *prometheus.Desc
|
||||||
|
|
||||||
|
txErrorPackets *prometheus.Desc
|
||||||
|
txErrorBytes *prometheus.Desc
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
func c(parts... string) string {
|
||||||
|
parts = append([]string{"fastd"}, parts...)
|
||||||
|
return strings.Join(parts, "_")
|
||||||
|
}
|
||||||
|
|
||||||
|
func NewPrometheusExporter(instanceName string, sockName string) PrometheusExporter {
|
||||||
|
|
||||||
|
l := prometheus.Labels{"fastd_instance": instanceName}
|
||||||
|
|
||||||
|
return PrometheusExporter{
|
||||||
|
SocketName: sockName,
|
||||||
|
uptime: prometheus.NewDesc(c(instanceName ,"uptime"), "uptime of the prometheus exporter", nil, l),
|
||||||
|
|
||||||
|
rxPackets: prometheus.NewDesc(c("rx_packets"), "rx packet count", nil, l),
|
||||||
|
rxBytes: prometheus.NewDesc(c("rx_bytes"), "rx byte count", nil, l),
|
||||||
|
rxReorderedPackets: prometheus.NewDesc(c("rx_reordered_packets"), "rx reordered packets", nil, l),
|
||||||
|
rxReorderedBytes: prometheus.NewDesc(c("rx_reordered_bytes"), "rx reordered packets", nil, l),
|
||||||
|
|
||||||
|
txPackets: prometheus.NewDesc(c("tx_packets"), "tx packet count", nil, l),
|
||||||
|
txBytes: prometheus.NewDesc(c("tx_bytes"), "tx byte count", nil, l),
|
||||||
|
txDroppedPackets: prometheus.NewDesc(c("tx_dropped_packets"), "tx dropped packets", nil, l),
|
||||||
|
txDroppedBytes: prometheus.NewDesc(c("tx_dropped_bytes"), "tx dropped packets", nil, l),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e PrometheusExporter) Describe(c chan<- *prometheus.Desc) {
|
||||||
|
c <- e.uptime
|
||||||
|
|
||||||
|
c <- e.rxPackets
|
||||||
|
c <- e.rxBytes
|
||||||
|
c <- e.rxReorderedPackets
|
||||||
|
c <- e.rxReorderedBytes
|
||||||
|
c <- e.txPackets
|
||||||
|
c <- e.txBytes
|
||||||
|
c <- e.txDroppedPackets
|
||||||
|
c <- e.txDroppedBytes
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e PrometheusExporter) Collect(c chan<- prometheus.Metric) {
|
||||||
|
data := data_from_sock(e.SocketName)
|
||||||
|
|
||||||
|
c <- prometheus.MustNewConstMetric(e.uptime, prometheus.GaugeValue, data.Uptime)
|
||||||
|
|
||||||
|
c <- prometheus.MustNewConstMetric(e.rxPackets, prometheus.CounterValue, float64(data.Statistics.RX.Count))
|
||||||
|
c <- prometheus.MustNewConstMetric(e.rxBytes, prometheus.CounterValue, float64(data.Statistics.RX.Bytes))
|
||||||
|
c <- prometheus.MustNewConstMetric(e.rxReorderedPackets, prometheus.CounterValue, float64(data.Statistics.RX_Reordered.Count))
|
||||||
|
c <- prometheus.MustNewConstMetric(e.rxReorderedBytes, prometheus.CounterValue, float64(data.Statistics.RX_Reordered.Bytes))
|
||||||
|
|
||||||
|
c <- prometheus.MustNewConstMetric(e.txPackets, prometheus.CounterValue, float64(data.Statistics.TX.Count))
|
||||||
|
c <- prometheus.MustNewConstMetric(e.txBytes, prometheus.CounterValue, float64(data.Statistics.TX.Bytes))
|
||||||
|
c <- prometheus.MustNewConstMetric(e.txDroppedPackets, prometheus.CounterValue, float64(data.Statistics.TX.Count))
|
||||||
|
c <- prometheus.MustNewConstMetric(e.txDroppedBytes, prometheus.CounterValue, float64(data.Statistics.TX_Dropped.Bytes))
|
||||||
|
|
||||||
// TODO: continue here mapping json data to metrics
|
|
||||||
// prometheus.MustNewConstMetric(, , data.Uptime)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func data_from_sock(sock string) Message {
|
func data_from_sock(sock string) Message {
|
||||||
|
@ -113,19 +182,14 @@ func main() {
|
||||||
log.Fatal("No instance given, exiting.")
|
log.Fatal("No instance given, exiting.")
|
||||||
}
|
}
|
||||||
|
|
||||||
instances := strings.Split(*instances, ",")
|
sock, err := sock_from_instance(*instances)
|
||||||
for i := 0; i < len(instances); i++ {
|
if err != nil {
|
||||||
sock, err := sock_from_instance(instances[i])
|
log.Fatal(err)
|
||||||
if err != nil {
|
|
||||||
log.Fatal(err)
|
|
||||||
}
|
|
||||||
go func() {
|
|
||||||
for {
|
|
||||||
Update(sock)
|
|
||||||
time.Sleep(time.Duration(15 * time.Second))
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
}
|
||||||
|
log.Printf("Reading fastd data from %v", sock)
|
||||||
|
exp := NewPrometheusExporter(*instances, sock)
|
||||||
|
|
||||||
|
prometheus.MustRegister(exp)
|
||||||
|
|
||||||
// Expose the registered metrics via HTTP.
|
// Expose the registered metrics via HTTP.
|
||||||
http.Handle("/metrics", promhttp.Handler())
|
http.Handle("/metrics", promhttp.Handler())
|
||||||
|
|
Loading…
Reference in a new issue