diff --git a/proxy.go b/proxy.go index eee18ea..96bc9bc 100644 --- a/proxy.go +++ b/proxy.go @@ -133,7 +133,9 @@ func main() { r := gin.Default() r.GET("/metrics", GetMetrics) - r.Run(fmt.Sprintf(":%d", exporterPort)) + if err := r.Run(fmt.Sprintf(":%d", exporterPort)); err != nil { + log.Fatalf("router.Run (%s)", err) + } } func (s *ShellyStatus) Fetch() {