[][src]Struct procfs::LoadAverage

pub struct LoadAverage {
    pub one: f32,
    pub five: f32,
    pub fifteen: f32,
    pub cur: u32,
    pub max: u32,
    pub latest_pid: u32,
}

Load average figures.

Load averages are calculated as the number of jobs in the run queue (state R) or waiting for disk I/O (state D) averaged over 1, 5, and 15 minutes.

Fields

one: f32

The one-minute load average

five: f32

The five-minute load average

fifteen: f32

THe fifteen-minute load average

cur: u32

The number of currently runnable kernel scheduling entities (processes, threads).

max: u32

The number of kernel scheduling entities that currently exist on the system.

latest_pid: u32

The fifth field is the PID of the process that was most recently created on the system.

Methods

impl LoadAverage
[src]

pub fn new() -> ProcResult<LoadAverage>
[src]

Reads load average info from /proc/loadavg

Trait Implementations

impl Debug for LoadAverage
[src]

Auto Trait Implementations

impl Send for LoadAverage

impl Sync for LoadAverage

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]