Update main.go

fixed copy paste
This commit is contained in:
Daniel Czerwonk 2017-12-01 14:27:02 +01:00 committed by GitHub
parent 9c58e96ba0
commit eabc3de149
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,10 +25,10 @@ var (
newFormat = flag.Bool("format.new", false, "New metric format (more convinient / generic)")
enableBgp = flag.Bool("proto.bgp", true, "Enables metrics for protocol BGP")
enableOspf = flag.Bool("proto.ospf", true, "Enables metrics for protocol OSPF")
enableKernel = flag.Bool("proto.kernel", true, "Enables metrics for protocol kernel")
enableStatic = flag.Bool("proto.static", true, "Enables metrics for protocol static")
enableDevice = flag.Bool("proto.device", true, "Enables metrics for protocol static")
enableDirect = flag.Bool("proto.direct", true, "Enables metrics for protocol direct")
enableKernel = flag.Bool("proto.kernel", true, "Enables metrics for protocol Kernel")
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")
)
func init() {