Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

metrics: add asynchronous write io panels #11408

Merged
merged 11 commits into from
Nov 22, 2021
8 changes: 4 additions & 4 deletions components/raftstore/src/store/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,9 +258,9 @@ lazy_static! {
).unwrap();
pub static ref STORE_WRITE_RAFTDB_DURATION_HISTOGRAM: Histogram =
register_histogram!(
"tikv_raftstore_append_log_duration_seconds",
"Bucketed histogram of peer appending log duration.",
exponential_buckets(0.0005, 2.0, 20).unwrap()
"tikv_raftstore_store_write_raftdb_duration_seconds",
"Bucketed histogram of store write raft db duration.",
exponential_buckets(0.0005, 2.0, 26).unwrap()
).unwrap();
pub static ref STORE_WRITE_SEND_DURATION_HISTOGRAM: Histogram =
register_histogram!(
Expand All @@ -276,7 +276,7 @@ lazy_static! {
).unwrap();
pub static ref STORE_WRITE_LOOP_DURATION_HISTOGRAM: Histogram =
register_histogram!(
"tikv_raftstore_store_write_loop_duration_seconds",
"tikv_raftstore_append_log_duration_seconds",
"Bucketed histogram of store write loop duration.",
exponential_buckets(0.00001, 2.0, 26).unwrap()
).unwrap();
Expand Down
Loading