Interface SummaryGroup<T>

A group of tracked summaries loosely based on the Summary interface exposed by the prom-client module

interface SummaryGroup<T> {
    observe(values): void;
    reset(): void;
    timer(key): StopTimer;
}

Type Parameters

  • T extends string = any

Methods