UNPKG

305 BJavaScriptView Raw
1// @flow
2
3export type MetricType = 'counters' | 'timers' | 'gauges'
4
5export type MetricDimensions = {|
6 system?: ?string,
7 component?: ?string,
8 hostname?: ?string,
9 env?: ?string,
10 metricType?: ?MetricType,
11 module?: ?string,
12|}
13
14export type MinimalMetricDimensions = {
15 metricType: MetricType,
16}