mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-13 10:03:55 +01:00
bda504dbe4
parent 8d5586558c
author Galorhallen <andrea.ponte1987@gmail.com> 1640558190 +0100
committer Galorhallen <andrea.ponte1987@gmail.com> 1640821760 +0100
Add test for multiple pihole
Add async mode for multiple piholes
Fixed GitHub Actions go versions
Add test for multiple pihole
Cleanup
112 lines
2.6 KiB
Go
112 lines
2.6 KiB
Go
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"strconv"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/eko/pihole-exporter/internal/pihole"
|
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
|
"golang.org/x/net/context"
|
|
)
|
|
|
|
// Server is the struct for the HTTP server.
|
|
type Server struct {
|
|
httpServer *http.Server
|
|
}
|
|
|
|
// NewServer method initializes a new HTTP server instance and associates
|
|
// the different routes that will be used by Prometheus (metrics) or for monitoring (readiness, liveness).
|
|
func NewServer(port uint16, clients []*pihole.Client) *Server {
|
|
mux := http.NewServeMux()
|
|
httpServer := &http.Server{
|
|
Addr: ":" + strconv.Itoa(int(port)),
|
|
Handler: mux,
|
|
}
|
|
|
|
s := &Server{
|
|
httpServer: httpServer,
|
|
}
|
|
|
|
mux.HandleFunc("/metrics", func(writer http.ResponseWriter, request *http.Request) {
|
|
log.Printf("request.Header: %v\n", request.Header)
|
|
|
|
for _, client := range clients {
|
|
go client.CollectMetricsAsync(writer, request)
|
|
}
|
|
|
|
for _, client := range clients {
|
|
log.Printf("Received %s from %s\n", <-client.Status, client.GetHostname())
|
|
}
|
|
|
|
promhttp.Handler().ServeHTTP(writer, request)
|
|
})
|
|
|
|
mux.Handle("/readiness", s.readinessHandler())
|
|
mux.Handle("/liveness", s.livenessHandler())
|
|
|
|
return s
|
|
}
|
|
|
|
// ListenAndServe method serves HTTP requests.
|
|
func (s *Server) ListenAndServe() {
|
|
log.Println("Starting HTTP server")
|
|
|
|
err := s.httpServer.ListenAndServe()
|
|
if err != nil {
|
|
log.Printf("Failed to start serving HTTP requests: %v", err)
|
|
}
|
|
}
|
|
|
|
// Stop method stops the HTTP server (so the exporter become unavailable).
|
|
func (s *Server) Stop() {
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
|
|
defer cancel()
|
|
|
|
s.httpServer.Shutdown(ctx)
|
|
}
|
|
|
|
func (s *Server) handleMetrics(clients []*pihole.Client) http.HandlerFunc {
|
|
return func(writer http.ResponseWriter, request *http.Request) {
|
|
errors := make([]string, 0)
|
|
|
|
for _, client := range clients {
|
|
if err := client.CollectMetrics(writer, request); err != nil {
|
|
errors = append(errors, err.Error())
|
|
fmt.Printf("Error %s\n", err)
|
|
}
|
|
}
|
|
|
|
if len(errors) == len(clients) {
|
|
writer.WriteHeader(http.StatusBadRequest)
|
|
body := strings.Join(errors, "\n")
|
|
_, _ = writer.Write([]byte(body))
|
|
}
|
|
|
|
promhttp.Handler().ServeHTTP(writer, request)
|
|
}
|
|
}
|
|
|
|
func (s *Server) readinessHandler() http.HandlerFunc {
|
|
return func(w http.ResponseWriter, req *http.Request) {
|
|
if s.isReady() {
|
|
w.WriteHeader(http.StatusOK)
|
|
} else {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
}
|
|
}
|
|
}
|
|
|
|
func (s *Server) livenessHandler() http.HandlerFunc {
|
|
return func(w http.ResponseWriter, req *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
}
|
|
}
|
|
|
|
func (s *Server) isReady() bool {
|
|
return s.httpServer != nil
|
|
}
|