Struct procfs::LoadAverage [−][src]
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.
Implementations
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 RefUnwindSafe for LoadAverage
impl Send for LoadAverage
impl Sync for LoadAverage
impl Unpin for LoadAverage
impl UnwindSafe for LoadAverage
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,