You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
36196: storage: debug page for RocksDB tickers/histograms r=tbg a=ajkr
Set up a debug page at "/_status/enginestats/<node_id>" that contains
values of all RocksDB ticker stats and histograms. It is also included
in debug zip.
A portion of the debug page (including both tickers and histograms)
looks like this:

The debug zip file contains a JSON file named "debug/nodes/<node_id>/enginestats" with all the tickers/histograms, and looks like this:
```
{
"stats": [
{
"storeId": 1,
"tickersAndHistograms": {
"tickers": {
"rocksdb.blobdb.blob.file.bytes.read": "0",
...
"rocksdb.write.wal": "296"
},
"histograms": {
"rocksdb.blobdb.blob.file.read.micros": {
"mean": 0,
"p50": 0,
"p95": 0,
"p99": 0,
"max": 0,
"count": "0",
"sum": "0"
},
...
"rocksdb.write.raw.block.micros": {
"mean": 1.8235294117647058,
"p50": 0.6071428571428571,
"p95": 10.749999999999993,
"p99": 12,
"max": 12,
"count": "17",
"sum": "31"
}
}
}
}
]
}
```
Release Note: None
Co-authored-by: Andrew Kryczka <andrew.kryczka2@gmail.com>
0 commit comments