Remove 0 bucket from stable HTTP metrics (#9631)

This commit is contained in:
Mateusz Rzeszutek 2023-10-09 20:36:12 +02:00 committed by GitHub
parent 6e79eb00bf
commit aeb332f96b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -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) {