Skip to main content

Histogram

interface Histogram

Properties Jump to heading

readonly
Jump to headingcount: number

The number of samples recorded by the histogram.

The number of samples recorded by the histogram. v17.4.0, v16.14.0

readonly
Jump to headingexceeds: number

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

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

readonly
Jump to headingmax: number

The maximum recorded event loop delay.

The maximum recorded event loop delay. v17.4.0, v16.14.0

readonly
Jump to headingmean: number

The mean of the recorded event loop delays.

readonly
Jump to headingmin: number

The minimum recorded event loop delay.

The minimum recorded event loop delay. v17.4.0, v16.14.0

readonly
Jump to headingpercentiles: Map<number, number>

Returns a Map object detailing the accumulated percentile distribution.

readonly
Jump to headingpercentilesBigInt: Map<bigint, bigint>

Returns a Map object detailing the accumulated percentile distribution.

readonly
Jump to headingstddev: number

The standard deviation of the recorded event loop delays.

Jump to headingpercentile(percentile: number): number

Returns the value at the given percentile.

Jump to headingpercentileBigInt(percentile: number): bigint

Returns the value at the given percentile.

Resets the collected histogram data.

Back to top