Histogram

nl.grons.metrics4.scala.Histogram
class Histogram(val metric: Histogram)

A Scala facade class for DropwizardHistogram.

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

def +=(value: Long): Unit

Adds the recorded value to the histogram sample.

Adds the recorded value to the histogram sample.

Attributes

def +=(value: Int): Unit

Adds the recorded value to the histogram sample.

Adds the recorded value to the histogram sample.

Attributes

def count: Long

The number of values recorded.

The number of values recorded.

Attributes

def max: Long

The largest recorded value.

The largest recorded value.

Attributes

def mean: Double

The arithmetic mean of all recorded values.

The arithmetic mean of all recorded values.

Attributes

def min: Long

The smallest recorded value.

The smallest recorded value.

Attributes

def snapshot: Snapshot

A snapshot of the values in the histogram's sample.

A snapshot of the values in the histogram's sample.

Attributes

def stdDev: Double

The standard deviation of all recorded values.

The standard deviation of all recorded values.

Attributes