Skip to content

Commit 2c0b6aa

Browse files
authored
[OMON-416] Add tags for DD (#227)
1 parent 703d143 commit 2c0b6aa

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ endif()
1717

1818
# Define project
1919
project(Monitoring
20-
VERSION 3.5.1
20+
VERSION 3.5.2
2121
DESCRIPTION "O2 Monitoring library"
2222
LANGUAGES CXX
2323
)

include/Monitoring/Tags.h

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,16 @@ enum class Value : unsigned short int {
107107
Monitoring, // 36
108108
CRORC, // 37
109109
ACO, // 38
110-
Analysis // 39
110+
Analysis, // 39
111+
DataDistribution, // 40
112+
StfBuilder, // 41
113+
StfSender, // 42
114+
TfBuilder, // 43
115+
TfScheduler // 44
111116
};
112117

113118
// Tag value array
114-
static constexpr std::array<std::string_view, 40> TAG_VALUE = {{
119+
static constexpr std::array<std::string_view, 45> TAG_VALUE = {{
115120
"Null"sv,
116121
"AD"sv, // 1
117122
"CPV"sv, // 2
@@ -151,7 +156,12 @@ static constexpr std::array<std::string_view, 40> TAG_VALUE = {{
151156
"monitoring"sv, // 36
152157
"CRORC"sv, // 37
153158
"ACO"sv, // 38
154-
"Analysis"sv // 39
159+
"Analysis"sv,// 39
160+
"DD"sv, // 40
161+
"StfB"sv, // 41
162+
"StfS"sv, // 42
163+
"TfB"sv, // 43
164+
"TfS"sv // 44
155165
}};
156166

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

0 commit comments

Comments
 (0)