Skip to content

Commit c3cae8f

Browse files
authored
Add NUMA tag (#286)
1 parent 5529676 commit c3cae8f

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CMakeLists.txt

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

3232
# Define project
3333
project(Monitoring
34-
VERSION 3.11.1
34+
VERSION 3.12.1
3535
DESCRIPTION "O2 Monitoring library"
3636
LANGUAGES CXX
3737
)

include/Monitoring/Tags.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,12 @@ enum class Key : unsigned short int {
4646
Type,
4747
CRORC,
4848
SerialId,
49-
Endpoint
49+
Endpoint,
50+
NUMA
5051
};
5152

5253
/// Tag keys array
53-
static constexpr std::array<std::string_view, 14> TAG_KEY = {
54+
static constexpr std::array<std::string_view, 15> TAG_KEY = {
5455
"hostname"sv,
5556
"rolenane"sv,
5657
"name"sv,
@@ -64,7 +65,8 @@ static constexpr std::array<std::string_view, 14> TAG_KEY = {
6465
"type"sv,
6566
"CRORC"sv,
6667
"serialId"sv,
67-
"endpoint"sv
68+
"endpoint"sv,
69+
"NUMA"sv
6870
};
6971

7072
// Tag values

0 commit comments

Comments
 (0)