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

interface Counter {
    increment(value?): void;
    reset(): void;
}

Methods