added flags to disable protocols

This commit is contained in:
Daniel Czerwonk 2017-12-01 07:42:29 +01:00
parent 5c10493514
commit bd27c80b5d
3 changed files with 43 additions and 10 deletions

34
main.go
View File

@ -9,6 +9,7 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/prometheus/common/log"
"github.com/czerwonk/bird_exporter/protocol"
)
const version string = "1.0.0"
@ -22,6 +23,12 @@ var (
birdEnabled = flag.Bool("bird.ipv4", true, "Get protocols from bird")
bird6Enabled = flag.Bool("bird.ipv6", true, "Get protocols from bird6")
newFormat = flag.Bool("use-new-format", false, "New metric format (more convinient / generic)")
enableBgp = flag.Bool("enable-bgp", true, "Enables metrics for protocol BGP")
enableOspf = flag.Bool("enable-ospf", true, "Enables metrics for protocol OSPF")
enableKernel = flag.Bool("enable-kernel", true, "Enables metrics for protocol kernel")
enableStatic = flag.Bool("enable-static", true, "Enables metrics for protocol static")
enableDevice = flag.Bool("enable-device", true, "Enables metrics for protocol static")
enableDirect = flag.Bool("enable-direct", true, "Enables metrics for protocol direct")
)
func init() {
@ -88,7 +95,8 @@ func handleMetricsRequest(w http.ResponseWriter, r *http.Request) error {
if len(protocols) > 0 {
reg := prometheus.NewRegistry()
c := NewMetricCollectorForProtocols(protocols, *newFormat)
p := enabledProtocols()
c := NewMetricCollectorForProtocols(protocols, *newFormat, p)
reg.MustRegister(c)
promhttp.HandlerFor(reg, promhttp.HandlerOpts{
@ -98,3 +106,27 @@ func handleMetricsRequest(w http.ResponseWriter, r *http.Request) error {
return nil
}
func enabledProtocols() int {
res := 0
if *enableBgp {
res |= protocol.BGP
}
if *enableOspf {
res |= protocol.OSPF
}
if *enableKernel {
res |= protocol.Kernel
}
if *enableStatic {
res |= protocol.Static
}
if *enableDevice {
res |= protocol.Device
}
if *enableDirect {
res |= protocol.Direct
}
return res
}

View File

@ -8,11 +8,12 @@ import (
)
type MetricCollector struct {
protocols []*protocol.Protocol
exporters map[int][]metrics.MetricExporter
protocols []*protocol.Protocol
exporters map[int][]metrics.MetricExporter
enabledProtocols int
}
func NewMetricCollectorForProtocols(protocols []*protocol.Protocol, newFormat bool) *MetricCollector {
func NewMetricCollectorForProtocols(protocols []*protocol.Protocol, newFormat bool, enabledProtocols int) *MetricCollector {
var e map[int][]metrics.MetricExporter
if newFormat {
@ -21,7 +22,7 @@ func NewMetricCollectorForProtocols(protocols []*protocol.Protocol, newFormat bo
e = exportersForLegacy()
}
return &MetricCollector{protocols: protocols, exporters: e}
return &MetricCollector{protocols: protocols, exporters: e, enabledProtocols: enabledProtocols}
}
func exportersForLegacy() map[int][]metrics.MetricExporter {
@ -61,7 +62,7 @@ func (m *MetricCollector) Describe(ch chan<- *prometheus.Desc) {
func (m *MetricCollector) Collect(ch chan<- prometheus.Metric) {
for _, p := range m.protocols {
if p.Proto == protocol.PROTO_UNKNOWN {
if p.Proto == protocol.PROTO_UNKNOWN || (m.enabledProtocols & p.Proto != p.Proto) {
continue
}

View File

@ -4,10 +4,10 @@ const (
PROTO_UNKNOWN = 0
BGP = 1
OSPF = 2
Kernel = 3
Static = 4
Direct = 5
Device = 6
Kernel = 4
Static = 8
Direct = 16
Device = 32
)
type Protocol struct {