Struct aws_sdk_elasticbeanstalk::model::CpuUtilization
source · [−]#[non_exhaustive]pub struct CpuUtilization {
pub user: Option<f64>,
pub nice: Option<f64>,
pub system: Option<f64>,
pub idle: Option<f64>,
pub io_wait: Option<f64>,
pub irq: Option<f64>,
pub soft_irq: Option<f64>,
pub privileged: Option<f64>,
}
Expand description
CPU utilization metrics for an instance.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.user: Option<f64>
Percentage of time that the CPU has spent in the User
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.
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.
idle: Option<f64>
Percentage of time that the CPU has spent in the Idle
state over the last 10 seconds.
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.
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.
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.
Implementations
Percentage of time that the CPU has spent in the User
state over the last 10 seconds.
Available on Linux environments only.
Percentage of time that the CPU has spent in the Nice
state over the last 10 seconds.
Available on Linux environments only.
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 Idle
state over the last 10 seconds.
Available on Linux environments only.
Percentage of time that the CPU has spent in the I/O Wait
state over the last 10 seconds.
Available on Linux environments only.
Percentage of time that the CPU has spent in the IRQ
state over the last 10 seconds.
Available on Linux environments only.
Percentage of time that the CPU has spent in the SoftIRQ
state over the last 10 seconds.
Available on Windows environments only.
Percentage of time that the CPU has spent in the Privileged
state over the last 10 seconds.
Creates a new builder-style object to manufacture CpuUtilization
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CpuUtilization
impl Send for CpuUtilization
impl Sync for CpuUtilization
impl Unpin for CpuUtilization
impl UnwindSafe for CpuUtilization
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more