54 lines
1.0 KiB
Go
54 lines
1.0 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
"syscall"
|
||
|
"time"
|
||
|
|
||
|
"github.com/ebrianne/adguard-exporter/config"
|
||
|
"github.com/ebrianne/adguard-exporter/internal/metrics"
|
||
|
"github.com/ebrianne/adguard-exporter/internal/adguard"
|
||
|
"github.com/ebrianne/adguard-exporter/internal/server"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
name = "adguard-exporter"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
s *server.Server
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
conf := config.Load()
|
||
|
|
||
|
metrics.Init()
|
||
|
|
||
|
initAdguardClient(conf.AdguardProtocol, conf.AdguardHostname, conf.AdguardPort, conf.AdguardPassword, conf.Interval)
|
||
|
initHttpServer(conf.Port)
|
||
|
|
||
|
handleExitSignal()
|
||
|
}
|
||
|
|
||
|
func initAdguardClient(protocol, hostname string, port uint16, password, interval time.Duration) {
|
||
|
client := adguard.NewClient(protocol, hostname, port, password, interval)
|
||
|
go client.Scrape()
|
||
|
}
|
||
|
|
||
|
func initHttpServer(port string) {
|
||
|
s = server.NewServer(port)
|
||
|
go s.ListenAndServe()
|
||
|
}
|
||
|
|
||
|
func handleExitSignal() {
|
||
|
stop := make(chan os.Signal, 1)
|
||
|
signal.Notify(stop, os.Interrupt, syscall.SIGTERM)
|
||
|
|
||
|
<-stop
|
||
|
|
||
|
s.Stop()
|
||
|
fmt.Println(fmt.Sprintf("\n%s HTTP server stopped", name))
|
||
|
}
|