UNPKG

@substrate/api-sidecar

Version:

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

14 lines (13 loc) 274 B
export interface IMetric { name: string; help: string; type: MetricType; buckets?: number[]; labels?: string[]; } export declare const enum MetricType { Counter = "counter", Gauge = "gauge", Histogram = "histogram", Summary = "summary" }