remove opaque metrics (#457)
* more descriptive help text for the head metrics unit Signed-off-by: Krasi Georgiev <kgeorgie@redhat.com>
This commit is contained in:
parent
48efdf8b81
commit
01e8296ee1
2
db.go
2
db.go
|
@ -184,7 +184,7 @@ func newDBMetrics(db *DB, r prometheus.Registerer) *dbMetrics {
|
|||
})
|
||||
m.startTime = prometheus.NewGaugeFunc(prometheus.GaugeOpts{
|
||||
Name: "prometheus_tsdb_lowest_timestamp",
|
||||
Help: "Lowest timestamp value stored in the database.",
|
||||
Help: "Lowest timestamp value stored in the database. The unit is decided by the library consumer.",
|
||||
}, func() float64 {
|
||||
db.mtx.RLock()
|
||||
defer db.mtx.RUnlock()
|
||||
|
|
4
head.go
4
head.go
|
@ -137,13 +137,13 @@ func newHeadMetrics(h *Head, r prometheus.Registerer) *headMetrics {
|
|||
})
|
||||
m.maxTime = prometheus.NewGaugeFunc(prometheus.GaugeOpts{
|
||||
Name: "prometheus_tsdb_head_max_time",
|
||||
Help: "Maximum timestamp of the head block.",
|
||||
Help: "Maximum timestamp of the head block. The unit is decided by the library consumer.",
|
||||
}, func() float64 {
|
||||
return float64(h.MaxTime())
|
||||
})
|
||||
m.minTime = prometheus.NewGaugeFunc(prometheus.GaugeOpts{
|
||||
Name: "prometheus_tsdb_head_min_time",
|
||||
Help: "Minimum time bound of the head block.",
|
||||
Help: "Minimum time bound of the head block. The unit is decided by the library consumer.",
|
||||
}, func() float64 {
|
||||
return float64(h.MinTime())
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue