Module Munin_sys.Proc

Process statistics.

type state =
  1. | Running
    (*

    Currently executing on CPU.

    *)
  2. | Sleeping
    (*

    Interruptible sleep (waiting for event).

    *)
  3. | Disk_sleep
    (*

    Uninterruptible sleep (waiting for I/O).

    *)
  4. | Stopped
    (*

    Stopped by signal (e.g., SIGSTOP).

    *)
  5. | Zombie
    (*

    Terminated but not yet reaped by parent.

    *)
  6. | Idle
    (*

    Idle kernel thread.

    *)
  7. | Unknown
    (*

    State could not be determined.

    *)

Process state.

module Self : sig ... end

Current process (self) statistics.

module Table : sig ... end

Process table statistics.