Histogram

@native @JSType trait Histogram extends StObject
Companion
object
trait StObject
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Concrete methods

def percentile(percentile: Double): Double

Returns the value at the given percentile.

Returns the value at the given percentile.

Value Params
percentile

A percentile value between 1 and 100.

def reset(): Unit

Resets the collected histogram data.

Resets the collected histogram data.

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from
Object
def isPrototypeOf(v: Object): Boolean
Inherited from
Object
def propertyIsEnumerable(v: String): Boolean
Inherited from
Object
def toLocaleString(): String
Inherited from
Object
def valueOf(): Any
Inherited from
Object

Concrete fields

val exceeds: Double

The number of times the event loop delay exceeded the maximum 1 hour eventloop delay threshold.

The number of times the event loop delay exceeded the maximum 1 hour eventloop delay threshold.

val max: Double

The maximum recorded event loop delay.

The maximum recorded event loop delay.

val mean: Double

The mean of the recorded event loop delays.

The mean of the recorded event loop delays.

val min: Double

The minimum recorded event loop delay.

The minimum recorded event loop delay.

val percentiles: Map[Double, Double]

A Map object detailing the accumulated percentile distribution.

A Map object detailing the accumulated percentile distribution.

val stddev: Double

The standard deviation of the recorded event loop delays.

The standard deviation of the recorded event loop delays.