From 292de4d311797b60852f38a8e745139b7247d89f Mon Sep 17 00:00:00 2001 From: chuck-bear <156690865+chuck-bear@users.noreply.github.com> Date: Thu, 5 Dec 2024 17:39:49 -0500 Subject: [PATCH] chore(prometheus.go): Fix typo when starting the process (#83) --- td2/prometheus.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/td2/prometheus.go b/td2/prometheus.go index 30236ca..2e53083 100644 --- a/td2/prometheus.go +++ b/td2/prometheus.go @@ -158,7 +158,7 @@ func prometheusExporter(ctx context.Context, updates chan *promUpdate) { promMux := http.NewServeMux() - l("serving prometheus metrics at 0.0.0.0:%d/metrics", td.PrometheusListenPort) + l(fmt.Sprintf("📊 Serving prometheus metrics at 0.0.0.0:%d/metrics", td.PrometheusListenPort)) promMux.Handle("/metrics", promhttp.Handler()) promSrv := &http.Server{ Addr: fmt.Sprintf(":%d", td.PrometheusListenPort),