[PATCH pve-common 1/3] Fix #5708: Add CPU raw counters
Sascha Westermann
sascha.westermann at hl-services.de
Tue Sep 17 07:50:18 CEST 2024
Add "guest_time" (43) from /proc/<pid>/stat.
Signed-off-by: Sascha Westermann <sascha.westermann at hl-services.de>
---
src/PVE/ProcFSTools.pm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/PVE/ProcFSTools.pm b/src/PVE/ProcFSTools.pm
index 3826fcc..5b0062e 100644
--- a/src/PVE/ProcFSTools.pm
+++ b/src/PVE/ProcFSTools.pm
@@ -239,7 +239,7 @@ sub read_proc_pid_stat {
my $statstr = PVE::Tools::file_read_firstline("/proc/$pid/stat");
- if ($statstr && $statstr =~ m/^$pid \(.*\) (\S) (-?\d+) -?\d+ -?\d+ -?\d+ -?\d+ \d+ \d+ \d+ \d+ \d+ (\d+) (\d+) (-?\d+) (-?\d+) -?\d+ -?\d+ -?\d+ 0 (\d+) (\d+) (-?\d+) \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ -?\d+ -?\d+ \d+ \d+ \d+/) {
+ if ($statstr && $statstr =~ m/^$pid \(.*\) (\S) (-?\d+) -?\d+ -?\d+ -?\d+ -?\d+ \d+ \d+ \d+ \d+ \d+ (\d+) (\d+) (-?\d+) (-?\d+) -?\d+ -?\d+ -?\d+ 0 (\d+) (\d+) (-?\d+) \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ \d+ -?\d+ -?\d+ \d+ \d+ \d+ (\d+)/) {
return {
status => $1,
ppid => $2,
@@ -248,6 +248,7 @@ sub read_proc_pid_stat {
starttime => $7,
vsize => $8,
rss => $9 * 4096,
+ guest_time => $10,
};
}
--
2.46.0
More information about the pve-devel
mailing list