Skip to content

Commit

Permalink
chore(prometheus.go): Fix typo when starting the process (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuck-bear authored Dec 5, 2024
1 parent 0b64f44 commit 292de4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion td2/prometheus.go
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 292de4d

Please sign in to comment.