pub struct MonitoringSummary {
pub monitoring_active: bool,
pub total_samples: usize,
pub active_alerts: usize,
pub registered_processors: usize,
pub uptime_seconds: u64,
pub average_sampling_rate: f64,
pub system_health_score: f64,
}
Expand description
Monitoring summary information
Fields§
§monitoring_active: bool
§total_samples: usize
§active_alerts: usize
§registered_processors: usize
§uptime_seconds: u64
§average_sampling_rate: f64
§system_health_score: f64
Trait Implementations§
Source§impl Clone for MonitoringSummary
impl Clone for MonitoringSummary
Source§fn clone(&self) -> MonitoringSummary
fn clone(&self) -> MonitoringSummary
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for MonitoringSummary
impl RefUnwindSafe for MonitoringSummary
impl Send for MonitoringSummary
impl Sync for MonitoringSummary
impl Unpin for MonitoringSummary
impl UnwindSafe for MonitoringSummary
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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