Tweak spacing
This commit is contained in:
parent
f3a7759726
commit
ac61e1f959
1 changed files with 7 additions and 5 deletions
12
exporter.go
12
exporter.go
|
@ -17,11 +17,13 @@ import (
|
||||||
var (
|
var (
|
||||||
addr = flag.String("listen-address", ":8080", "The address to listen on for HTTP requests.")
|
addr = flag.String("listen-address", ":8080", "The address to listen on for HTTP requests.")
|
||||||
|
|
||||||
lifepo4weredVars = prometheus.NewGaugeVec(prometheus.GaugeOpts{
|
lifepo4weredVars = prometheus.NewGaugeVec(
|
||||||
Name: "lifepo4wered",
|
prometheus.GaugeOpts{
|
||||||
Help: "Variables gathered from the lifepo4wered-cli tool",
|
Name: "lifepo4wered",
|
||||||
},
|
Help: "Variables gathered from the lifepo4wered-cli tool",
|
||||||
[]string{"var"})
|
},
|
||||||
|
[]string{"var"},
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Reference in a new issue