interface PerformanceMetricsProvider {
    getCustomLabels(): Promise<{
        [key: string]: string | number;
    }>;
}

Methods