Package | Description |
---|---|
io.micrometer.core.instrument.distribution |
Copyright 2017 Pivotal Software, Inc.
|
Modifier and Type | Method and Description |
---|---|
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.bufferLength(Integer bufferLength)
Statistics like max, percentiles, and histogram counts decay over time to give greater weight to recent
samples (exception: histogram counts are cumulative for those systems that expect cumulative
histogram buckets).
|
static DistributionStatisticConfig.Builder |
DistributionStatisticConfig.builder() |
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.expiry(Duration expiry)
Statistics like max, percentiles, and histogram counts decay over time to give greater weight to recent
samples (exception: histogram counts are cumulative for those systems that expect cumulative
histogram buckets).
|
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.maximumExpectedValue(Long max)
The maximum value that the meter is expected to observe.
|
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.minimumExpectedValue(Long min)
The minimum value that the meter is expected to observe.
|
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.percentilePrecision(Integer digitsOfPrecision)
Determines the number of digits of precision to maintain on the dynamic range histogram used to compute
percentile approximations.
|
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.percentiles(double... percentiles)
Produces an additional time series for each requested percentile.
|
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.percentilesHistogram(Boolean enabled) |
DistributionStatisticConfig.Builder |
DistributionStatisticConfig.Builder.sla(long... sla)
Publish at a minimum a histogram containing your defined SLA boundaries.
|
Copyright © 2018. All rights reserved.