interface RecordableHistogram
extends Histogram
Methods Jump to heading
Jump to headingrecord(val: number | bigint): void
Jump to headingrecordDelta(): void
Calculates the amount of time (in nanoseconds) that has passed since the
previous call to recordDelta()
and records that amount in the histogram.
Jump to headingadd(other: RecordableHistogram): void
Adds the values from other
to this histogram.