Method and Description |
---|
io.micrometer.core.instrument.DistributionSummary.histogramCountAtValue(long)
Use
HistogramSupport.takeSnapshot() to retrieve bucket counts. |
io.micrometer.core.instrument.Timer.histogramCountAtValue(long)
Use
HistogramSupport.takeSnapshot() to retrieve bucket counts. |
io.micrometer.core.instrument.DistributionSummary.percentile(double)
Use
HistogramSupport.takeSnapshot() to retrieve percentiles. |
io.micrometer.core.instrument.Timer.percentile(double, TimeUnit)
Use
HistogramSupport.takeSnapshot() to retrieve bucket counts. |
io.micrometer.core.instrument.distribution.HistogramSupport.takeSnapshot(boolean) |
Constructor and Description |
---|
io.micrometer.core.instrument.AbstractTimer(Meter.Id, Clock, DistributionStatisticConfig, PauseDetector, TimeUnit)
Timer implementations should now declare at construction time whether they support aggregable percentiles or not.
By declaring it up front, Micrometer can memory optimize the histogram structure used to store distribution statistics.
|
io.micrometer.core.instrument.cumulative.CumulativeDistributionSummary(Meter.Id, Clock, DistributionStatisticConfig, double) |
io.micrometer.core.instrument.step.StepDistributionSummary(Meter.Id, Clock, DistributionStatisticConfig, long, double) |
io.micrometer.core.instrument.step.StepTimer(Meter.Id, Clock, DistributionStatisticConfig, PauseDetector, TimeUnit, long) |