mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 21:54:10 -08:00
Fix metric description of prometheus_tsdb_symbol_table_size_bytes. (#8080)
This is how much memory we use to load in the on-disk symbol tables, not the size of the tables themselves. Signed-off-by: Brian Brazil <brian.brazil@robustperception.io>
This commit is contained in:
parent
ce4b3ac282
commit
fdf1c29224
|
@ -199,7 +199,7 @@ func newDBMetrics(db *DB, r prometheus.Registerer) *dbMetrics {
|
||||||
})
|
})
|
||||||
m.symbolTableSize = prometheus.NewGaugeFunc(prometheus.GaugeOpts{
|
m.symbolTableSize = prometheus.NewGaugeFunc(prometheus.GaugeOpts{
|
||||||
Name: "prometheus_tsdb_symbol_table_size_bytes",
|
Name: "prometheus_tsdb_symbol_table_size_bytes",
|
||||||
Help: "Size of symbol table on disk (in bytes)",
|
Help: "Size of symbol table in memory for loaded blocks",
|
||||||
}, func() float64 {
|
}, func() float64 {
|
||||||
db.mtx.RLock()
|
db.mtx.RLock()
|
||||||
blocks := db.blocks[:]
|
blocks := db.blocks[:]
|
||||||
|
|
Loading…
Reference in a new issue