UNPKG

yandex-cloud-monitoring-metrics

Version:
20 lines (19 loc) 432 B
export declare enum YandexMetricType { DGAUGE = "DGAUGE", GAUGE = "GAUGE", COUNTER = "COUNTER", RATE = "RATE" } export interface IYandexMetric { name: string; labels: Record<string, string>; type: YandexMetricType; value: number; } export interface IYandexMetricRequest { metrics: IYandexMetric[]; } export interface IYandexMetricResponse { writtenMetricsCount: number; error?: string; }