[][src]Struct rusoto_elasticbeanstalk::CPUUtilization

pub struct CPUUtilization {
    pub io_wait: Option<f64>,
    pub irq: Option<f64>,
    pub idle: Option<f64>,
    pub nice: Option<f64>,
    pub privileged: Option<f64>,
    pub soft_irq: Option<f64>,
    pub system: Option<f64>,
    pub user: Option<f64>,
}

CPU utilization metrics for an instance.

Fields

io_wait: Option<f64>

Available on Linux environments only.

Percentage of time that the CPU has spent in the I/O Wait state over the last 10 seconds.

irq: Option<f64>

Available on Linux environments only.

Percentage of time that the CPU has spent in the IRQ state over the last 10 seconds.

idle: Option<f64>

Percentage of time that the CPU has spent in the Idle state over the last 10 seconds.

nice: Option<f64>

Available on Linux environments only.

Percentage of time that the CPU has spent in the Nice state over the last 10 seconds.

privileged: Option<f64>

Available on Windows environments only.

Percentage of time that the CPU has spent in the Privileged state over the last 10 seconds.

soft_irq: Option<f64>

Available on Linux environments only.

Percentage of time that the CPU has spent in the SoftIRQ state over the last 10 seconds.

system: Option<f64>

Available on Linux environments only.

Percentage of time that the CPU has spent in the System state over the last 10 seconds.

user: Option<f64>

Percentage of time that the CPU has spent in the User state over the last 10 seconds.

Trait Implementations

impl Clone for CPUUtilization[src]

impl Debug for CPUUtilization[src]

impl Default for CPUUtilization[src]

impl PartialEq<CPUUtilization> for CPUUtilization[src]

impl StructuralPartialEq for CPUUtilization[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.