Operations you can do on a histogram.

interface HistogramInterface {
    observe: (labels: Record<string, string>, value: number) => void;
}

Properties

Properties

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

Observes a new value.