hue_exporter/main.go

51 lines
1.3 KiB
Go
Raw Normal View History

2020-12-22 18:24:23 +01:00
package main
import (
"fmt"
"log"
"net/http"
"github.com/namsral/flag"
"github.com/prometheus/client_golang/prometheus"
"github.com/prometheus/client_golang/prometheus/promhttp"
"github.com/aexel90/hue_exporter/collector"
2020-12-28 17:29:44 +01:00
"github.com/aexel90/hue_exporter/hue"
2020-12-22 18:24:23 +01:00
)
var (
flagBridgeURL = flag.String("hue-url", "", "The URL of the bridge")
flagUsername = flag.String("username", "", "The username token having bridge access")
flagAddress = flag.String("listen-address", "127.0.0.1:9773", "The address to listen on for HTTP requests.")
2020-12-28 17:29:44 +01:00
flagTest = flag.Bool("test", false, "test configured metrics")
flagCollect = flag.Bool("collect", false, "test configured metrics")
flagCollectFile = flag.String("collect-file", "", "The JSON file where to store collect results")
2020-12-22 18:24:23 +01:00
)
func main() {
flag.Parse()
2020-12-28 17:29:44 +01:00
// collect mode
if *flagCollect {
hue.CollectAll(*flagBridgeURL, *flagUsername, *flagCollectFile)
return
}
2020-12-22 18:24:23 +01:00
hueCollector, err := collector.NewHueCollector(*flagBridgeURL, *flagUsername)
if err != nil {
fmt.Println(err)
return
}
if *flagTest {
hueCollector.Test()
2020-12-28 17:29:44 +01:00
} else {
prometheus.MustRegister(hueCollector)
http.Handle("/metrics", promhttp.Handler())
fmt.Printf("metrics available at http://%s/metrics\n", *flagAddress)
log.Fatal(http.ListenAndServe(*flagAddress, nil))
2020-12-22 18:24:23 +01:00
}
}