Skip to content

Commit

Permalink
Add 0.003 bucket to prometheus histograms
Browse files Browse the repository at this point in the history
  • Loading branch information
khvzak committed Sep 6, 2024
1 parent 92e95f0 commit 2815710
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion casper-server/src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ static METRICS: OnceLock<OpenTelemetryMetrics> = OnceLock::new();

// Histogram boundaries
static BOUNDARIES: &[f64] = &[
0.001, 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1.0, 2.5, 5.0, 7.5, 10.0,
0.001, 0.003, 0.005, 0.01, 0.025, 0.05, 0.075, 0.1, 0.25, 0.5, 0.75, 1.0, 2.5, 5.0, 7.5, 10.0,
];

pub fn init(config: &Config) {
Expand Down

0 comments on commit 2815710

Please sign in to comment.