Skip to content

Commit 703d143

Browse files
authored
Use memory instead of mem as metric name prefix (#226)
1 parent 0686589 commit 703d143

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.0
20+
VERSION 3.5.1
2121
DESCRIPTION "O2 Monitoring library"
2222
LANGUAGES CXX
2323
)

include/Monitoring/ProcessMonitor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class ProcessMonitor
7777
static constexpr const char* metricsNames[] = {"memoryUsagePercentage", "virtualMemorySize", "residentSetSize",
7878
"cpuUsedPercentage", "involuntaryContextSwitches", "voluntaryContextSwitches", "cpuUsedAbsolute",
7979
"averageResidentSetSize", "averageVirtualMemorySize", "averageCpuUsedPercentage",
80-
"cpuTimeConsumedByProcess", "proportionalSetSize", "memPrivateClean", "memPrivateDirty"};
80+
"cpuTimeConsumedByProcess", "proportionalSetSize", "memoryPrivateClean", "memoryPrivateDirty"};
8181

8282
static constexpr unsigned int VM_SIZE_INDEX = 18;
8383
static constexpr unsigned int VM_RSS_INDEX = 22;

0 commit comments

Comments
 (0)