added flags to disable protocols
This commit is contained in:
parent
5c10493514
commit
bd27c80b5d
34
main.go
34
main.go
@ -9,6 +9,7 @@ import (
|
|||||||
"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"
|
||||||
"github.com/prometheus/common/log"
|
"github.com/prometheus/common/log"
|
||||||
|
"github.com/czerwonk/bird_exporter/protocol"
|
||||||
)
|
)
|
||||||
|
|
||||||
const version string = "1.0.0"
|
const version string = "1.0.0"
|
||||||
@ -22,6 +23,12 @@ var (
|
|||||||
birdEnabled = flag.Bool("bird.ipv4", true, "Get protocols from bird")
|
birdEnabled = flag.Bool("bird.ipv4", true, "Get protocols from bird")
|
||||||
bird6Enabled = flag.Bool("bird.ipv6", true, "Get protocols from bird6")
|
bird6Enabled = flag.Bool("bird.ipv6", true, "Get protocols from bird6")
|
||||||
newFormat = flag.Bool("use-new-format", false, "New metric format (more convinient / generic)")
|
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() {
|
func init() {
|
||||||
@ -88,7 +95,8 @@ func handleMetricsRequest(w http.ResponseWriter, r *http.Request) error {
|
|||||||
|
|
||||||
if len(protocols) > 0 {
|
if len(protocols) > 0 {
|
||||||
reg := prometheus.NewRegistry()
|
reg := prometheus.NewRegistry()
|
||||||
c := NewMetricCollectorForProtocols(protocols, *newFormat)
|
p := enabledProtocols()
|
||||||
|
c := NewMetricCollectorForProtocols(protocols, *newFormat, p)
|
||||||
reg.MustRegister(c)
|
reg.MustRegister(c)
|
||||||
|
|
||||||
promhttp.HandlerFor(reg, promhttp.HandlerOpts{
|
promhttp.HandlerFor(reg, promhttp.HandlerOpts{
|
||||||
@ -98,3 +106,27 @@ func handleMetricsRequest(w http.ResponseWriter, r *http.Request) error {
|
|||||||
|
|
||||||
return nil
|
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
|
||||||
|
}
|
||||||
|
@ -8,11 +8,12 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type MetricCollector struct {
|
type MetricCollector struct {
|
||||||
protocols []*protocol.Protocol
|
protocols []*protocol.Protocol
|
||||||
exporters map[int][]metrics.MetricExporter
|
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
|
var e map[int][]metrics.MetricExporter
|
||||||
|
|
||||||
if newFormat {
|
if newFormat {
|
||||||
@ -21,7 +22,7 @@ func NewMetricCollectorForProtocols(protocols []*protocol.Protocol, newFormat bo
|
|||||||
e = exportersForLegacy()
|
e = exportersForLegacy()
|
||||||
}
|
}
|
||||||
|
|
||||||
return &MetricCollector{protocols: protocols, exporters: e}
|
return &MetricCollector{protocols: protocols, exporters: e, enabledProtocols: enabledProtocols}
|
||||||
}
|
}
|
||||||
|
|
||||||
func exportersForLegacy() map[int][]metrics.MetricExporter {
|
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) {
|
func (m *MetricCollector) Collect(ch chan<- prometheus.Metric) {
|
||||||
for _, p := range m.protocols {
|
for _, p := range m.protocols {
|
||||||
if p.Proto == protocol.PROTO_UNKNOWN {
|
if p.Proto == protocol.PROTO_UNKNOWN || (m.enabledProtocols & p.Proto != p.Proto) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -4,10 +4,10 @@ const (
|
|||||||
PROTO_UNKNOWN = 0
|
PROTO_UNKNOWN = 0
|
||||||
BGP = 1
|
BGP = 1
|
||||||
OSPF = 2
|
OSPF = 2
|
||||||
Kernel = 3
|
Kernel = 4
|
||||||
Static = 4
|
Static = 8
|
||||||
Direct = 5
|
Direct = 16
|
||||||
Device = 6
|
Device = 32
|
||||||
)
|
)
|
||||||
|
|
||||||
type Protocol struct {
|
type Protocol struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user