bird_exporter/metrics/bgp_state_exporter.go
zhanghao b09cde3210 Add bgp state metrics
This patch adds bgp state metrics as follows:
http://XXX:9324/metrics

bird_bgp_state{name="uplink0",proto="BGP",state="Active"} 1
bird_bgp_state{name="uplink1",proto="BGP",state="Idle"} 1
2021-07-02 05:14:30 -04:00

37 lines
1.1 KiB
Go

package metrics
import (
"github.com/czerwonk/bird_exporter/client"
"github.com/czerwonk/bird_exporter/protocol"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/common/log"
)
type bgpStateMetricExporter struct {
prefix string
client client.Client
}
// NewBGPStateExporter creates a new MetricExporter for BGP metrics
func NewBGPStateExporter(prefix string, client client.Client) MetricExporter {
return &bgpStateMetricExporter{prefix: prefix, client: client}
}
func (m *bgpStateMetricExporter) Describe(ch chan<- *prometheus.Desc) {
}
func (m *bgpStateMetricExporter) Export(p *protocol.Protocol, ch chan<- prometheus.Metric, newFormat bool) {
labels := []string{"name", "proto", "state"}
bgpstateDesc := prometheus.NewDesc(m.prefix+"bgp_state_count", "Number of BGP connections at each state", labels, nil)
state, err := m.client.GetBGPStates(p)
if err != nil {
log.Errorln(err)
return
}
if state != nil {
l := []string{state.Name, "BGP", state.State}
ch <- prometheus.MustNewConstMetric(bgpstateDesc, prometheus.GaugeValue, float64(1), l...)
}
}