Histogram

class Histogram(val metric: Histogram)

A Scala facade class for DropwizardHistogram.

class Object
trait Matchable
class Any

Value members

Concrete methods

def +=(value: Long): Unit

Adds the recorded value to the histogram sample.

Adds the recorded value to the histogram sample.

def +=(value: Int): Unit

Adds the recorded value to the histogram sample.

Adds the recorded value to the histogram sample.

def count: Long

The number of values recorded.

The number of values recorded.

def max: Long

The largest recorded value.

The largest recorded value.

def mean: Double

The arithmetic mean of all recorded values.

The arithmetic mean of all recorded values.

def min: Long

The smallest recorded value.

The smallest recorded value.

def snapshot: Snapshot

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

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

def stdDev: Double

The standard deviation of all recorded values.

The standard deviation of all recorded values.