interface ICounter
extends IMetric
Since 0.2.0

Monotonically increasing counter. observe / inc add a non-negative value.

Methods

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

Increments the counter.

Usage

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