Interface CounterGroup<T>

A group of tracked counters loosely based on the Counter interface exposed by the prom-client module - counters are metrics that only go up

interface CounterGroup<T> {
    increment(values): void;
    reset(): void;
}

Type Parameters

  • T extends string = any

Methods