removed device protocol since it does not generate routes
This commit is contained in:
parent
5aa2e04ce7
commit
d46dc7e1ce
4
main.go
4
main.go
@ -25,7 +25,6 @@ var (
|
|||||||
enableOspf = flag.Bool("proto.ospf", true, "Enables metrics for protocol OSPF")
|
enableOspf = flag.Bool("proto.ospf", true, "Enables metrics for protocol OSPF")
|
||||||
enableKernel = flag.Bool("proto.kernel", true, "Enables metrics for protocol Kernel")
|
enableKernel = flag.Bool("proto.kernel", true, "Enables metrics for protocol Kernel")
|
||||||
enableStatic = flag.Bool("proto.static", true, "Enables metrics for protocol Static")
|
enableStatic = flag.Bool("proto.static", true, "Enables metrics for protocol Static")
|
||||||
enableDevice = flag.Bool("proto.device", true, "Enables metrics for protocol Device")
|
|
||||||
enableDirect = flag.Bool("proto.direct", true, "Enables metrics for protocol Direct")
|
enableDirect = flag.Bool("proto.direct", true, "Enables metrics for protocol Direct")
|
||||||
// pre bird 2.0
|
// pre bird 2.0
|
||||||
bird6Socket = flag.String("bird.socket6", "/var/run/bird6.ctl", "Socket to communicate with bird6 routing daemon (not compatible with -bird.v2)")
|
bird6Socket = flag.String("bird.socket6", "/var/run/bird6.ctl", "Socket to communicate with bird6 routing daemon (not compatible with -bird.v2)")
|
||||||
@ -128,9 +127,6 @@ func enabledProtocols() int {
|
|||||||
if *enableStatic {
|
if *enableStatic {
|
||||||
res |= protocol.Static
|
res |= protocol.Static
|
||||||
}
|
}
|
||||||
if *enableDevice {
|
|
||||||
res |= protocol.Device
|
|
||||||
}
|
|
||||||
if *enableDirect {
|
if *enableDirect {
|
||||||
res |= protocol.Direct
|
res |= protocol.Direct
|
||||||
}
|
}
|
||||||
|
@ -30,7 +30,6 @@ func exportersForLegacy() map[int][]metrics.MetricExporter {
|
|||||||
|
|
||||||
return map[int][]metrics.MetricExporter{
|
return map[int][]metrics.MetricExporter{
|
||||||
protocol.BGP: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("bgp4_session", "bgp6_session", l)},
|
protocol.BGP: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("bgp4_session", "bgp6_session", l)},
|
||||||
protocol.Device: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("device4", "device6", l)},
|
|
||||||
protocol.Direct: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("direct4", "direct6", l)},
|
protocol.Direct: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("direct4", "direct6", l)},
|
||||||
protocol.Kernel: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("kernel4", "kernel6", l)},
|
protocol.Kernel: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("kernel4", "kernel6", l)},
|
||||||
protocol.OSPF: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("ospf", "ospfv3", l), ospf.NewExporter("")},
|
protocol.OSPF: []metrics.MetricExporter{metrics.NewLegacyMetricExporter("ospf", "ospfv3", l), ospf.NewExporter("")},
|
||||||
@ -44,7 +43,6 @@ func exportersForDefault() map[int][]metrics.MetricExporter {
|
|||||||
|
|
||||||
return map[int][]metrics.MetricExporter{
|
return map[int][]metrics.MetricExporter{
|
||||||
protocol.BGP: []metrics.MetricExporter{e},
|
protocol.BGP: []metrics.MetricExporter{e},
|
||||||
protocol.Device: []metrics.MetricExporter{e},
|
|
||||||
protocol.Direct: []metrics.MetricExporter{e},
|
protocol.Direct: []metrics.MetricExporter{e},
|
||||||
protocol.Kernel: []metrics.MetricExporter{e},
|
protocol.Kernel: []metrics.MetricExporter{e},
|
||||||
protocol.OSPF: []metrics.MetricExporter{e, ospf.NewExporter("bird_")},
|
protocol.OSPF: []metrics.MetricExporter{e, ospf.NewExporter("bird_")},
|
||||||
|
@ -28,8 +28,6 @@ func protoString(p *protocol.Protocol) string {
|
|||||||
return "Static"
|
return "Static"
|
||||||
case protocol.Kernel:
|
case protocol.Kernel:
|
||||||
return "Kernel"
|
return "Kernel"
|
||||||
case protocol.Device:
|
|
||||||
return "Device"
|
|
||||||
case protocol.Direct:
|
case protocol.Direct:
|
||||||
return "Direct"
|
return "Direct"
|
||||||
}
|
}
|
||||||
|
@ -102,8 +102,6 @@ func parseProto(val string) int {
|
|||||||
return protocol.OSPF
|
return protocol.OSPF
|
||||||
case "Direct":
|
case "Direct":
|
||||||
return protocol.Direct
|
return protocol.Direct
|
||||||
case "Device":
|
|
||||||
return protocol.Device
|
|
||||||
case "Kernel":
|
case "Kernel":
|
||||||
return protocol.Kernel
|
return protocol.Kernel
|
||||||
case "Static":
|
case "Static":
|
||||||
|
@ -7,7 +7,6 @@ const (
|
|||||||
Kernel = 4
|
Kernel = 4
|
||||||
Static = 8
|
Static = 8
|
||||||
Direct = 16
|
Direct = 16
|
||||||
Device = 32
|
|
||||||
)
|
)
|
||||||
|
|
||||||
type Protocol struct {
|
type Protocol struct {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user