pandora-metrics
Version:
## Overview
15 lines (14 loc) • 636 B
TypeScript
import { MetricName } from '../common/index';
import { Counter, Histogram, Meter, Timer } from './MetricsProxy';
import { Proxiable } from './domain';
/**
* @deprecated
*/
export declare class MetricsManagerClient {
static metricsProcessChannel: any;
static register(group: any, name: MetricName | string, metric: Proxiable): void;
static getCounter(group: string, name: MetricName | string): Counter;
static getTimer(group: string, name: MetricName | string): Timer;
static getMeter(group: string, name: MetricName | string): Meter;
static getHistogram(group: string, name: MetricName | string): Histogram;
}