goimports
This commit is contained in:
parent
cf021eb59d
commit
5bb4771717
14
main.go
14
main.go
@ -6,10 +6,10 @@ import (
|
|||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
|
"github.com/czerwonk/bird_exporter/protocol"
|
||||||
"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"
|
||||||
@ -23,12 +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("format.new", false, "New metric format (more convinient / generic)")
|
newFormat = flag.Bool("format.new", false, "New metric format (more convinient / generic)")
|
||||||
enableBgp = flag.Bool("proto.bgp", true, "Enables metrics for protocol BGP")
|
enableBgp = flag.Bool("proto.bgp", true, "Enables metrics for protocol BGP")
|
||||||
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 static")
|
enableDevice = flag.Bool("proto.device", true, "Enables metrics for protocol static")
|
||||||
enableDirect = flag.Bool("proto.direct", true, "Enables metrics for protocol direct")
|
enableDirect = flag.Bool("proto.direct", true, "Enables metrics for protocol direct")
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user