From d63d8d6f5ef1122861de2acd477f2643b8e9db6b Mon Sep 17 00:00:00 2001 From: Owen Date: Thu, 16 Oct 2025 20:42:02 -0700 Subject: [PATCH] Add log message that the server is on --- main.go | 1 + 1 file changed, 1 insertion(+) diff --git a/main.go b/main.go index a498865..57ac17c 100644 --- a/main.go +++ b/main.go @@ -391,6 +391,7 @@ func main() { } if tel != nil { // Admin HTTP server (exposes /metrics when Prometheus exporter is enabled) + logger.Info("Starting metrics server on %s", tcfg.AdminAddr) mux := http.NewServeMux() mux.HandleFunc("/healthz", func(w http.ResponseWriter, r *http.Request) { w.WriteHeader(200) }) if tel.PrometheusHandler != nil {