Fix error message
This commit is contained in:
parent
479456edc4
commit
2a939bf754
1 changed files with 5 additions and 2 deletions
|
@ -39,7 +39,10 @@ func NewServer(port uint16, clients []*pihole.Client) *Server {
|
|||
}
|
||||
|
||||
for _, client := range clients {
|
||||
log.Printf("Received %s from %s\n", <-client.Status, client.GetHostname())
|
||||
status := <-client.Status
|
||||
if status.Status == pihole.MetricsCollectionError {
|
||||
log.Printf("An error occured while contacting %s: %s", client.GetHostname(), status.Err.Error())
|
||||
}
|
||||
}
|
||||
|
||||
promhttp.Handler().ServeHTTP(writer, request)
|
||||
|
|
Loading…
Reference in a new issue