Uses of Interface
com.codahale.metrics.Reservoir
-
Packages that use Reservoir Package Description com.codahale.metrics -
-
Uses of Reservoir in com.codahale.metrics
Classes in com.codahale.metrics that implement Reservoir Modifier and Type Class Description class
ExponentiallyDecayingReservoir
An exponentially-decaying random reservoir oflong
s.class
SlidingTimeWindowReservoir
AReservoir
implementation backed by a sliding window that stores only the measurements made in the lastN
seconds (or other time unit).class
SlidingWindowReservoir
AReservoir
implementation backed by a sliding window that stores the lastN
measurements.class
UniformReservoir
A random sampling reservoir of a stream oflong
s.Fields in com.codahale.metrics declared as Reservoir Modifier and Type Field Description private Reservoir
Histogram. reservoir
Constructors in com.codahale.metrics with parameters of type Reservoir Constructor Description Histogram(Reservoir reservoir)
Creates a newHistogram
with the given reservoir.Timer(Reservoir reservoir)
Timer(Reservoir reservoir, Clock clock)
-