nl.grons.metrics4.scala
package nl.grons.metrics4.scala
Type members
Classlikes
class HdrMetricBuilder(baseName: MetricName, registry: MetricRegistry, resetAtSnapshot: Boolean) extends MetricBuilder
An alternative metric builder that creates Histograms and Timers with Reservoirs from the HdrHistogram library.
An alternative metric builder that creates Histograms and Timers with Reservoirs from the HdrHistogram library.
See the the manual for more instructions on using hdrhistogram.
- Value parameters:
- resetAtSnapshot
falseto use reservoirs that accumulate internal state forever, ortrueto use a reservoir that resets its internal state on each snapshot (which is how reporters get information from reservoirs). See this article for when the latter is useful.