Struct aws_sdk_elasticbeanstalk::types::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§
source§impl 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.
source§impl CpuUtilization
impl CpuUtilization
sourcepub fn builder() -> CpuUtilizationBuilder
pub fn builder() -> CpuUtilizationBuilder
Creates a new builder-style object to manufacture CpuUtilization
.
Trait Implementations§
source§impl Clone for CpuUtilization
impl Clone for CpuUtilization
source§fn clone(&self) -> CpuUtilization
fn clone(&self) -> CpuUtilization
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CpuUtilization
impl Debug for CpuUtilization
source§impl PartialEq for CpuUtilization
impl PartialEq for CpuUtilization
impl StructuralPartialEq for CpuUtilization
Auto Trait Implementations§
impl Freeze for CpuUtilization
impl RefUnwindSafe for CpuUtilization
impl Send for CpuUtilization
impl Sync for CpuUtilization
impl Unpin for CpuUtilization
impl UnwindSafe for CpuUtilization
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more