Skip to content

Commit

Permalink
Remove 0 bucket from stable HTTP metrics (#9631)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Rzeszutek committed Oct 9, 2023
1 parent 6e79eb0 commit aeb332f
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@ final class HttpMetricsUtil {

static final List<Double> DURATION_SECONDS_BUCKETS =
unmodifiableList(
asList(
0.0, 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));
asList(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));

static DoubleHistogramBuilder createStableDurationHistogramBuilder(
Meter meter, String name, String description) {
Expand Down

0 comments on commit aeb332f

Please sign in to comment.