Merge pull request #201 from prometheus/grobie/fix-typo-in-metric

Fix typo in prometheus_tsdb_reloads_failures_total description
This commit is contained in:
Fabian Reinartz 2017-11-09 13:27:12 +00:00 committed by GitHub
commit b4d093a8a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
db.go
View file

@ -142,7 +142,7 @@ func newDBMetrics(db *DB, r prometheus.Registerer) *dbMetrics {
})
m.reloadsFailed = prometheus.NewCounter(prometheus.CounterOpts{
Name: "prometheus_tsdb_reloads_failures_total",
Help: "Number of times the database failed to reload black data from disk.",
Help: "Number of times the database failed to reload block data from disk.",
})
m.compactionsTriggered = prometheus.NewCounter(prometheus.CounterOpts{
Name: "prometheus_tsdb_compactions_triggered_total",