pub struct SystemOverview {Show 13 fields
pub total_queues: u32,
pub total_jobs: u64,
pub pending_jobs: u64,
pub running_jobs: u64,
pub completed_jobs: u64,
pub failed_jobs: u64,
pub dead_jobs: u64,
pub overall_throughput: f64,
pub overall_error_rate: f64,
pub avg_processing_time_ms: f64,
pub system_health: SystemHealth,
pub uptime_seconds: u64,
pub last_updated: DateTime<Utc>,
}Expand description
System overview statistics
Fields§
§total_queues: u32§total_jobs: u64§pending_jobs: u64§running_jobs: u64§completed_jobs: u64§failed_jobs: u64§dead_jobs: u64§overall_throughput: f64§overall_error_rate: f64§avg_processing_time_ms: f64§system_health: SystemHealth§uptime_seconds: u64§last_updated: DateTime<Utc>Trait Implementations§
Source§impl Debug for SystemOverview
impl Debug for SystemOverview
Auto Trait Implementations§
impl Freeze for SystemOverview
impl RefUnwindSafe for SystemOverview
impl Send for SystemOverview
impl Sync for SystemOverview
impl Unpin for SystemOverview
impl UnsafeUnpin for SystemOverview
impl UnwindSafe for SystemOverview
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> 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>
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