Module Munin_sys.Proc
Process statistics.
type state = | Running(*Currently executing on CPU.
*)| Sleeping(*Interruptible sleep (waiting for event).
*)| Disk_sleep(*Uninterruptible sleep (waiting for I/O).
*)| Stopped(*Stopped by signal (e.g., SIGSTOP).
*)| Zombie(*Terminated but not yet reaped by parent.
*)| Idle(*Idle kernel thread.
*)| Unknown(*State could not be determined.
*)
Process state.
module Self : sig ... endCurrent process (self) statistics.
module Table : sig ... endProcess table statistics.