A tracked metric loosely based on the interfaces exposed by the prom-client module

interface Metric {
    decrement(value?): void;
    increment(value?): void;
    reset(): void;
    timer(): StopTimer;
    update(value): void;
}

Methods