diff --git a/prometheus_metrics/prommetrics.go b/prometheus_metrics/prommetrics.go index 4a5ff38..c225895 100644 --- a/prometheus_metrics/prommetrics.go +++ b/prometheus_metrics/prommetrics.go @@ -149,6 +149,10 @@ func InitHTTPServer(listenAddr string, shutdownContext context.Context) (func() `)) }) + http.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) { + w.Write([]byte(`OK`)) + }) + shutdownClosure := func() error { return promSrv.Shutdown(shutdownContext) }