public abstract class AbstractDistributionSummary extends AbstractMeter implements DistributionSummary
DistributionSummary.BuilderMeter.Id, Meter.Type| Modifier | Constructor and Description |
|---|---|
protected |
AbstractDistributionSummary(Meter.Id id,
Clock clock,
DistributionStatisticConfig distributionStatisticConfig,
double scale) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object o) |
int |
hashCode() |
double |
histogramCountAtValue(long value)
Provides cumulative histogram counts.
|
double |
percentile(double percentile) |
void |
record(double amount)
Updates the statistics kept by the summary with the specified amount.
|
protected abstract void |
recordNonNegative(double amount) |
DistributionStatisticConfig |
statsConfig() |
HistogramSnapshot |
takeSnapshot(boolean supportsAggregablePercentiles)
Summary statistics should be published off of a single snapshot instance so that, for example, there isn't
disagreement between the distribution's count and total because more events continue to stream in.
|
getIdclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitbuilder, count, max, mean, measure, totalAmountprotected AbstractDistributionSummary(Meter.Id id, Clock clock, DistributionStatisticConfig distributionStatisticConfig, double scale)
public final void record(double amount)
DistributionSummaryrecord in interface DistributionSummaryamount - Amount for an event being measured. For example, if the size in bytes of responses
from a server. If the amount is less than 0 the value will be dropped.protected abstract void recordNonNegative(double amount)
public double percentile(double percentile)
percentile in interface DistributionSummarypercentile - A percentile in the domain [0, 1]. For example, 0.5 represents the 50th percentile of the
distribution.public double histogramCountAtValue(long value)
DistributionSummaryhistogramCountAtValue in interface DistributionSummaryvalue - The histogram bucket to retrieve a count for.public HistogramSnapshot takeSnapshot(boolean supportsAggregablePercentiles)
DistributionSummarytakeSnapshot in interface DistributionSummarysupportsAggregablePercentiles - Whether percentile histogram buckets should be included in the list of CountAtBucket.public boolean equals(@Nullable java.lang.Object o)
equals in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic DistributionStatisticConfig statsConfig()