Skip to content

Commit 0df7646

Browse files
committed
fix to mds prometheus stats
1 parent f5511e3 commit 0df7646

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

go/market-data/market-data-service/service.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ import (
2323
)
2424

2525
var connections = promauto.NewGauge(prometheus.GaugeOpts{
26-
Name: "active_connections",
27-
Help: "The number of active connections",
26+
Name: "mds_active_connections",
27+
Help: "The number of active connections to the mds",
2828
})
2929

3030
var quotesSent = promauto.NewCounter(prometheus.CounterOpts{
31-
Name: "quotes_sent",
31+
Name: "mds_quotes_sent",
3232
Help: "The number of quotes sent across all clients",
3333
})
3434

0 commit comments

Comments
 (0)