Struct rusoto_elasticbeanstalk::CPUUtilization[][src]

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

CPU utilization metrics for an instance.

Fields

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

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

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

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

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

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

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

Trait Implementations

impl Default for CPUUtilization
[src]

Returns the "default value" for a type. Read more

impl Debug for CPUUtilization
[src]

Formats the value using the given formatter. Read more

impl Clone for CPUUtilization
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CPUUtilization
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations