Class DistributionStatisticConfig.Builder
java.lang.Object
io.micrometer.core.instrument.distribution.DistributionStatisticConfig.Builder
- Enclosing class:
DistributionStatisticConfig
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbufferLength
(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).build()
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).The maximum value that the meter is expected to observe.maximumExpectedValue
(Long max) Deprecated.The minimum value that the meter is expected to observe.minimumExpectedValue
(Long min) Deprecated.UseminimumExpectedValue(Double)
instead since 1.4.0.percentilePrecision
(Integer digitsOfPrecision) Determines the number of digits of precision to maintain on the dynamic range histogram used to compute percentile approximations.percentiles
(double... percentiles) Produces an additional time series for each requested percentile.percentilesHistogram
(Boolean enabled) serviceLevelObjectives
(double... slos) Publish at a minimum a histogram containing your defined Service Level Objective (SLO) boundaries.sla
(double... sla) Deprecated.UseserviceLevelObjectives(double...)
instead.sla
(long... sla) Deprecated.UseserviceLevelObjectives(double...)
instead.
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
percentilesHistogram
-
percentiles
Produces an additional time series for each requested percentile. This percentile is computed locally, and so can't be aggregated with percentiles computed across other dimensions (e.g. in a different instance). UseDistributionStatisticConfig.percentileHistogram
to publish a histogram that can be used to generate aggregable percentile approximations.- Parameters:
percentiles
- Percentiles to compute and publish. The 95th percentile should be expressed as0.95
.- Returns:
- This builder.
-
percentilePrecision
Determines the number of digits of precision to maintain on the dynamic range histogram used to compute percentile approximations. The higher the degrees of precision, the more accurate the approximation is at the cost of more memory.- Parameters:
digitsOfPrecision
- The digits of precision to maintain for percentile approximations.- Returns:
- This builder.
-
serviceLevelObjectives
Publish at a minimum a histogram containing your defined Service Level Objective (SLO) boundaries. When used in conjunction withDistributionStatisticConfig.percentileHistogram
, the boundaries defined here are included alongside other buckets used to generate aggregable percentile approximations. If theDistributionStatisticConfig
is meant for use with aTimer
, the SLO unit is in nanoseconds.- Parameters:
slos
- The SLO boundaries to include the set of histogram buckets shipped to the monitoring system.- Returns:
- This builder.
- Since:
- 1.5.0
-
sla
Deprecated.UseserviceLevelObjectives(double...)
instead. "Service Level Agreement" is more formally the agreement between an engineering organization and the business. Service Level Objectives are set more conservatively than the SLA to provide some wiggle room while still satisfying the business requirement. SLOs are the threshold we intend to measure against, then.Publish at a minimum a histogram containing your defined SLA boundaries. When used in conjunction withDistributionStatisticConfig.percentileHistogram
, the boundaries defined here are included alongside other buckets used to generate aggregable percentile approximations. If theDistributionStatisticConfig
is meant for use with aTimer
, the SLA unit is in nanoseconds.- Parameters:
sla
- The SLA boundaries to include the set of histogram buckets shipped to the monitoring system.- Returns:
- This builder.
- Since:
- 1.4.0
-
sla
Deprecated.UseserviceLevelObjectives(double...)
instead. "Service Level Agreement" is more formally the agreement between an engineering organization and the business. Service Level Objectives are set more conservatively than the SLA to provide some wiggle room while still satisfying the business requirement. SLOs are the threshold we intend to measure against, then.Publish at a minimum a histogram containing your defined SLA boundaries. When used in conjunction withDistributionStatisticConfig.percentileHistogram
, the boundaries defined here are included alongside other buckets used to generate aggregable percentile approximations. If theDistributionStatisticConfig
is meant for use with aTimer
, the SLA unit is in nanoseconds.- Parameters:
sla
- The SLA boundaries to include the set of histogram buckets shipped to the monitoring system.- Returns:
- This builder.
-
minimumExpectedValue
Deprecated.UseminimumExpectedValue(Double)
instead since 1.4.0.The minimum value that the meter is expected to observe. Sets a lower bound on histogram buckets that are shipped to monitoring systems that support aggregable percentile approximations.- Parameters:
min
- The minimum value that this distribution summary is expected to observe.- Returns:
- This builder.
-
minimumExpectedValue
The minimum value that the meter is expected to observe. Sets a lower bound on histogram buckets that are shipped to monitoring systems that support aggregable percentile approximations.- Parameters:
min
- The minimum value that this distribution summary is expected to observe.- Returns:
- This builder.
- Since:
- 1.3.10
-
maximumExpectedValue
Deprecated.UsemaximumExpectedValue(Double)
instead since 1.4.0.The maximum value that the meter is expected to observe. Sets an upper bound on histogram buckets that are shipped to monitoring systems that support aggregable percentile approximations.- Parameters:
max
- The maximum value that the meter is expected to observe.- Returns:
- This builder.
-
maximumExpectedValue
The maximum value that the meter is expected to observe. Sets an upper bound on histogram buckets that are shipped to monitoring systems that support aggregable percentile approximations.- Parameters:
max
- The maximum value that the meter is expected to observe.- Returns:
- This builder.
- Since:
- 1.3.10
-
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). Samples are accumulated to such statistics in ring buffers which rotate after this expiry, with a buffer length ofbufferLength(java.lang.Integer)
, hence complete expiry happens after this expiry * buffer length.- Parameters:
expiry
- The amount of time samples are accumulated to decaying distribution statistics before they are reset and rotated.- Returns:
- This builder.
-
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). Samples are accumulated to such statistics in ring buffers which rotate afterexpiry(java.time.Duration)
, with this buffer length.- Parameters:
bufferLength
- The number of histograms to keep in the ring buffer.- Returns:
- This builder.
-
build
- Returns:
- A new immutable distribution configuration.
-
maximumExpectedValue(Double)
instead since 1.4.0.