blob: 1984c42c1e0e7b3f62e705f7ff81fa15340fab26 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#pragma once
#include <util/generic/fwd.h>
namespace NMonitoring {
constexpr ui32 MaxMetricTypeNameLength = 9;
enum class EMetricType {
UNKNOWN = 0,
GAUGE = 1,
COUNTER = 2,
RATE = 3,
IGAUGE = 4,
HIST = 5,
HIST_RATE = 6,
DSUMMARY = 7,
// ISUMMARY = 8, reserved
LOGHIST = 9,
};
TStringBuf MetricTypeToStr(EMetricType type);
EMetricType MetricTypeFromStr(TStringBuf str);
}
|