Browse Source

Merge pull request #196 from prometheus/grobie/fix-metric-prefix

Fix missing prefix of tsdb_wal_* metrics
pull/5805/head
Fabian Reinartz 7 years ago committed by GitHub
parent
commit
7337c6a513
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      wal.go

4
wal.go

@ -63,11 +63,11 @@ func newWalMetrics(wal *SegmentWAL, r prometheus.Registerer) *walMetrics {
m := &walMetrics{}
m.fsyncDuration = prometheus.NewSummary(prometheus.SummaryOpts{
Name: "tsdb_wal_fsync_duration_seconds",
Name: "prometheus_tsdb_wal_fsync_duration_seconds",
Help: "Duration of WAL fsync.",
})
m.corruptions = prometheus.NewCounter(prometheus.CounterOpts{
Name: "tsdb_wal_corruptions_total",
Name: "prometheus_tsdb_wal_corruptions_total",
Help: "Total number of WAL corruptions.",
})

Loading…
Cancel
Save