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
sourceimpl CpuUtilization
impl CpuUtilization
sourcepub fn user(&self) -> Option<f64>
pub fn user(&self) -> Option<f64>
Percentage of time that the CPU has spent in the User
state over the last 10 seconds.
sourcepub fn nice(&self) -> Option<f64>
pub fn nice(&self) -> Option<f64>
Available on Linux environments only.
Percentage of time that the CPU has spent in the Nice
state over the last 10 seconds.
sourcepub fn system(&self) -> Option<f64>
pub fn system(&self) -> Option<f64>
Available on Linux environments only.
Percentage of time that the CPU has spent in the System
state over the last 10 seconds.
sourcepub fn idle(&self) -> Option<f64>
pub fn idle(&self) -> Option<f64>
Percentage of time that the CPU has spent in the Idle
state over the last 10 seconds.
sourcepub fn io_wait(&self) -> Option<f64>
pub fn io_wait(&self) -> 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.
sourcepub fn irq(&self) -> Option<f64>
pub fn irq(&self) -> Option<f64>
Available on Linux environments only.
Percentage of time that the CPU has spent in the IRQ
state over the last 10 seconds.
sourcepub fn soft_irq(&self) -> Option<f64>
pub fn soft_irq(&self) -> Option<f64>
Available on Linux environments only.
Percentage of time that the CPU has spent in the SoftIRQ
state over the last 10 seconds.
sourcepub fn privileged(&self) -> Option<f64>
pub fn privileged(&self) -> Option<f64>
Available on Windows environments only.
Percentage of time that the CPU has spent in the Privileged
state over the last 10 seconds.
sourceimpl CpuUtilization
impl CpuUtilization
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CpuUtilization
Trait Implementations
sourceimpl Clone for CpuUtilization
impl Clone for CpuUtilization
sourcefn clone(&self) -> CpuUtilization
fn clone(&self) -> CpuUtilization
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CpuUtilization
impl Debug for CpuUtilization
sourceimpl PartialEq<CpuUtilization> for CpuUtilization
impl PartialEq<CpuUtilization> for CpuUtilization
sourcefn eq(&self, other: &CpuUtilization) -> bool
fn eq(&self, other: &CpuUtilization) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CpuUtilization) -> bool
fn ne(&self, other: &CpuUtilization) -> bool
This method tests for !=
.
impl StructuralPartialEq for CpuUtilization
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more