Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 292de4d

Browse files
authored
chore(prometheus.go): Fix typo when starting the process (#83)
1 parent 0b64f44 commit 292de4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

td2/prometheus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ func prometheusExporter(ctx context.Context, updates chan *promUpdate) {
158158

159159
promMux := http.NewServeMux()
160160

161-
l("serving prometheus metrics at 0.0.0.0:%d/metrics", td.PrometheusListenPort)
161+
l(fmt.Sprintf("📊 Serving prometheus metrics at 0.0.0.0:%d/metrics", td.PrometheusListenPort))
162162
promMux.Handle("/metrics", promhttp.Handler())
163163
promSrv := &http.Server{
164164
Addr: fmt.Sprintf(":%d", td.PrometheusListenPort),

0 commit comments

Comments
 (0)