Skip to content

Commit

Permalink
Bugfix: bad metric name
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbourgon committed Apr 16, 2018
1 parent 2ad2b18 commit b0d084e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prometheus.go
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ func (m *prometheusMetrics) register(namespace, subsystem string) {
Help: "Total count of passes.",
}, []string{"datacenter"})
m.synthsTotal = promauto.NewCounterVec(prometheus.CounterOpts{Namespace: namespace, Subsystem: subsystem,
Name: "Total count of synths.",
Help: "synth_total",
Name: "synth_total",
Help: "Total count of synths.",
}, []string{"datacenter"})
m.errorsTotal = promauto.NewCounterVec(prometheus.CounterOpts{Namespace: namespace, Subsystem: subsystem,
Name: "errors_total",
Expand Down

0 comments on commit b0d084e

Please sign in to comment.