kernel-explainer 1.0.0

Kernel event and scheduling explanation library for the Peek process intelligence tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Converts raw kernel values into human-readable explanations.
//!
//! State characters, scheduler policy/priority, capability bitmasks, OOM score, namespaces,
//! and well-known binary names.

pub mod capabilities;
pub mod namespaces;
pub mod oom;
pub mod scheduler;
pub mod signals;
pub mod states;
pub mod syscalls;
pub mod well_known;