Skip to content

Commit faef8de

Browse files
authored
docs(metrics): Use correct Badger metrics. (#239)
This PR reflects the update to Dgraph metrics made in dgraph-io/dgraph#7507
1 parent 1bff5ae commit faef8de

1 file changed

Lines changed: 10 additions & 7 deletions

File tree

content/deploy/metrics.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,16 @@ not interact directly with the filesystem. Instead it relies on
3636

3737
Metric | Description
3838
------- | -----------
39-
`badger_v3_disk_reads_total` | Total count of disk reads in Badger.
40-
`badger_v3_disk_writes_total` | Total count of disk writes in Badger.
41-
`badger_v3_gets_total` | Total count of calls to Badger's `get`.
42-
`badger_v3_memtable_gets_total` | Total count of memtable accesses to Badger's `get`.
43-
`badger_v3_puts_total` | Total count of calls to Badger's `put`.
44-
`badger_v3_read_bytes` | Total bytes read from Badger.
45-
`badger_v3_written_bytes` | Total bytes written to Badger.
39+
`badger_disk_reads_total` | Total count of disk reads in Badger.
40+
`badger_disk_writes_total` | Total count of disk writes in Badger.
41+
`badger_gets_total` | Total count of calls to Badger's `get`.
42+
`badger_memtable_gets_total` | Total count of memtable accesses to Badger's `get`.
43+
`badger_puts_total` | Total count of calls to Badger's `put`.
44+
`badger_read_bytes` | Total bytes read from Badger.
45+
`badger_lsm_bloom_hits_total` | Total number of LSM tree bloom hits.
46+
`badger_written_bytes` | Total bytes written to Badger.
47+
`badger_lsm_size_bytes` | Total size in bytes of the LSM tree.
48+
`badger_vlog_size_bytes` | Total size in bytes of the value log.
4649

4750
## Go Metrics
4851

0 commit comments

Comments
 (0)