pihole-exporter/main.go

46 lines
893 B
Go
Raw Normal View History

2019-05-08 23:45:04 +02:00
package main
import (
"fmt"
"github.com/eko/pihole-exporter/config"
"github.com/eko/pihole-exporter/internal/metrics"
"github.com/eko/pihole-exporter/internal/pihole"
"github.com/eko/pihole-exporter/internal/server"
"github.com/xonvanetta/shutdown/pkg/shutdown"
2019-05-08 23:45:04 +02:00
)
func main() {
envConf, clientConfigs := config.Load()
2019-05-08 23:45:04 +02:00
metrics.Init()
serverDead := make(chan struct{})
clients := make([]*pihole.Client, 0, len(clientConfigs))
for i, _ := range clientConfigs {
client := pihole.NewClient(&clientConfigs[i])
clients = append(clients, client)
fmt.Printf("Append client %s\n", clients)
}
s := server.NewServer(envConf.Port, clients)
go func() {
s.ListenAndServe()
close(serverDead)
}()
2019-05-08 23:45:04 +02:00
ctx := shutdown.Context()
2019-05-08 23:45:04 +02:00
go func() {
<-ctx.Done()
s.Stop()
}()
2019-05-08 23:45:04 +02:00
select {
case <-ctx.Done():
case <-serverDead:
}
2019-05-08 23:45:04 +02:00
fmt.Println("pihole-exporter HTTP server stopped")
2019-05-08 23:45:04 +02:00
}