Remove 0 bucket from stable HTTP metrics (#9631)
This commit is contained in:
parent
6e79eb00bf
commit
aeb332f96b
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue