Skip to content

Commit

Permalink
fix to mds prometheus stats
Browse files Browse the repository at this point in the history
  • Loading branch information
ettec committed Jun 29, 2020
1 parent f5511e3 commit 0df7646
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions go/market-data/market-data-service/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ import (
)

var connections = promauto.NewGauge(prometheus.GaugeOpts{
Name: "active_connections",
Help: "The number of active connections",
Name: "mds_active_connections",
Help: "The number of active connections to the mds",
})

var quotesSent = promauto.NewCounter(prometheus.CounterOpts{
Name: "quotes_sent",
Name: "mds_quotes_sent",
Help: "The number of quotes sent across all clients",
})

Expand Down

0 comments on commit 0df7646

Please sign in to comment.