Package io.dropwizard.metrics5
Class Histogram
java.lang.Object
io.dropwizard.metrics5.Histogram
A metric which calculates the distribution of a value.
- See Also:
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
Histogram
Creates a newHistogram
with the given reservoir.- Parameters:
reservoir
- the reservoir to create a histogram from
-
-
Method Details
-
update
public void update(int value) Adds a recorded value.- Parameters:
value
- the length of the value
-
update
public void update(long value) Adds a recorded value.- Parameters:
value
- the length of the value
-
getCount
public long getCount()Returns the number of values recorded. -
getSum
public long getSum()Returns the sum of values recorded. -
getSnapshot
Description copied from interface:Sampling
Returns a snapshot of the values.- Specified by:
getSnapshot
in interfaceSampling
- Returns:
- a snapshot of the values
-