A tracked summary loosely based on the Summary interface exposed by the prom-client module

interface Summary {
    observe(value): void;
    reset(): void;
    timer(): StopTimer;
}

Methods