Skip to content

Commit 175977c

Browse files
authored
Add tags for Data Sampling and Mergers (#248)
1 parent 9999d47 commit 175977c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

include/Monitoring/Tags.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,13 @@ enum class Value : unsigned short int {
110110
StfBuilder, // 41
111111
StfSender, // 42
112112
TfBuilder, // 43
113-
TfScheduler // 44
113+
TfScheduler, // 44
114+
DataSampling, // 45
115+
Mergers // 46
114116
};
115117

116118
// Tag value array
117-
static constexpr std::array<std::string_view, 45> TAG_VALUE = {{
119+
static constexpr std::array<std::string_view, 47> TAG_VALUE = {{
118120
"Null"sv,
119121
"AD"sv, // 1
120122
"CPV"sv, // 2
@@ -159,7 +161,9 @@ static constexpr std::array<std::string_view, 45> TAG_VALUE = {{
159161
"StfB"sv, // 41
160162
"StfS"sv, // 42
161163
"TfB"sv, // 43
162-
"TfS"sv // 44
164+
"TfS"sv, // 44
165+
"DS"sv, // 45
166+
"Mergers"sv // 46
163167
}};
164168

165169
static constexpr std::string_view GetValue(const int value)

0 commit comments

Comments
 (0)