Operations you can do on a counter.

interface CounterInterface {
    increase: (labels?: Record<string, string>, value?: number) => void;
}

Properties

Properties

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

Increases the value of the counter.