I use this exporter as an api, and I need to implement another custom label strategy. Purpose being to habe business logic in those labels (datacenter, ...). Because the interface is private, this can not be implemented elsewhere. This commit makes it public. Signed-off-by: Arthur Gautier <baloo@gandi.net>
37 lines
675 B
Go
37 lines
675 B
Go
package metrics
|
|
|
|
import (
|
|
"github.com/czerwonk/bird_exporter/protocol"
|
|
)
|
|
|
|
type DefaultLabelStrategy struct {
|
|
}
|
|
|
|
func (*DefaultLabelStrategy) LabelNames() []string {
|
|
return []string{"name", "proto", "ip_version"}
|
|
}
|
|
|
|
func (*DefaultLabelStrategy) LabelValues(p *protocol.Protocol) []string {
|
|
return []string{p.Name, protoString(p), p.IpVersion}
|
|
}
|
|
|
|
func protoString(p *protocol.Protocol) string {
|
|
switch p.Proto {
|
|
case protocol.BGP:
|
|
return "BGP"
|
|
case protocol.OSPF:
|
|
if p.IpVersion == "4" {
|
|
return "OSPF"
|
|
}
|
|
return "OSPFv3"
|
|
case protocol.Static:
|
|
return "Static"
|
|
case protocol.Kernel:
|
|
return "Kernel"
|
|
case protocol.Direct:
|
|
return "Direct"
|
|
}
|
|
|
|
return ""
|
|
}
|