Class DropwizardDistributionSummary
java.lang.Object
io.micrometer.core.instrument.AbstractMeter
io.micrometer.core.instrument.AbstractDistributionSummary
io.micrometer.core.instrument.dropwizard.DropwizardDistributionSummary
- All Implemented Interfaces:
HistogramSupport
,DistributionSummary
,Meter
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.micrometer.core.instrument.DistributionSummary
DistributionSummary.Builder
Nested classes/interfaces inherited from interface io.micrometer.core.instrument.Meter
Meter.Builder, Meter.Id, Meter.MeterProvider<T extends Meter>, Meter.Type
-
Field Summary
Fields inherited from class io.micrometer.core.instrument.AbstractDistributionSummary
histogram
-
Method Summary
Modifier and TypeMethodDescriptionlong
count()
double
max()
protected void
recordNonNegative
(double amount) double
Methods inherited from class io.micrometer.core.instrument.AbstractDistributionSummary
defaultHistogram, record, takeSnapshot
Methods inherited from class io.micrometer.core.instrument.AbstractMeter
equals, getId, hashCode
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micrometer.core.instrument.DistributionSummary
histogramCountAtValue, mean, measure, percentile
Methods inherited from interface io.micrometer.core.instrument.distribution.HistogramSupport
takeSnapshot
-
Method Details
-
recordNonNegative
protected void recordNonNegative(double amount) - Specified by:
recordNonNegative
in classAbstractDistributionSummary
-
count
public long count()- Returns:
- The number of times that record has been called since this timer was created.
-
totalAmount
public double totalAmount()- Returns:
- The total amount of all recorded events.
-
max
public double max()- Returns:
- The maximum time of a single event.
-