pub struct AggregatedMetrics {
pub instance_count: usize,
pub total_active_sessions: u64,
pub total_created: u64,
pub total_completed: u64,
pub total_expired: u64,
pub total_signers: u64,
pub total_aggregations: u64,
pub total_failures: u64,
pub overall_success_rate: f64,
pub avg_sessions_per_instance: f64,
pub max_active_sessions: u64,
}Expand description
Aggregated metrics across multiple coordinator instances.
Fields§
§instance_count: usize§total_active_sessions: u64§total_created: u64§total_completed: u64§total_expired: u64§total_signers: u64§total_aggregations: u64§total_failures: u64§overall_success_rate: f64§avg_sessions_per_instance: f64§max_active_sessions: u64Trait Implementations§
Source§impl Clone for AggregatedMetrics
impl Clone for AggregatedMetrics
Source§fn clone(&self) -> AggregatedMetrics
fn clone(&self) -> AggregatedMetrics
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AggregatedMetrics
impl Debug for AggregatedMetrics
Source§impl<'de> Deserialize<'de> for AggregatedMetrics
impl<'de> Deserialize<'de> for AggregatedMetrics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AggregatedMetrics
impl RefUnwindSafe for AggregatedMetrics
impl Send for AggregatedMetrics
impl Sync for AggregatedMetrics
impl Unpin for AggregatedMetrics
impl UnsafeUnpin for AggregatedMetrics
impl UnwindSafe for AggregatedMetrics
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