interface IHistogram
extends IMetric
Since 0.2.0

Histogram: bucketed observation distribution plus sum and count.

Properties

readonly
buckets: readonly number[]

Upper bounds of the histogram buckets.

Methods

observe(
value: number,
labels?: Readonly<Record<string, string>>
): void

Records an observation (sample).

Usage

import { type IHistogram } from "common/src/index.ts";