Skip to content

Commit 0084915

Browse files
authored
fix: make tick_interval metric continuous rather then intermittent (#1525)
1 parent 40fa88f commit 0084915

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • crates/common/metrics/src

crates/common/metrics/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ lazy_static::lazy_static! {
534534
let histogram_opts = HistogramOpts::new(
535535
"lean_tick_interval_duration_seconds",
536536
"Tracks elapsed time between clock ticks in seconds"
537-
).buckets(vec![0.4, 0.6, 0.75, 0.8, 0.805, 0.81, 0.815, 0.82, 0.825, 0.85, 0.9, 1.0, 1.2, 1.6]);
537+
).buckets(vec![0.4, 0.6, 0.75, 0.8, 0.805, 0.81, 0.815, 0.82, 0.825, 0.85, 0.9, 1.0, 1.2, 1.6, 1.8, 2.0, 2.5, 3.0, 4.0]);
538538
register_histogram_vec_with_registry!(
539539
histogram_opts,
540540
&[],

0 commit comments

Comments
 (0)