1 Commits

Author SHA1 Message Date
Daniel Heule
8a3061af2b bugfix zombie procs 2026-03-04 16:34:00 +01:00
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "rsnmpagent" name = "rsnmpagent"
version = "0.4.4" version = "0.4.5"
edition = "2024" edition = "2024"
[profile.release] [profile.release]

View File

@@ -56,6 +56,7 @@ pub(crate) fn count_processes(proc_path: &Path) -> io::Result<Ptypes> {
75 => counts.wakekill += 1, // K 75 => counts.wakekill += 1, // K
87 => counts.waking += 1, // W 87 => counts.waking += 1, // W
73 => counts.idle += 1, // I 73 => counts.idle += 1, // I
90 => counts.zombie += 1, // Z
_ => warn!("unknown proc status value {}", byteval), _ => warn!("unknown proc status value {}", byteval),
} }
} }