pub struct TelemetryStats {
pub total_operations: usize,
pub p50_latency_ms: u64,
pub p95_latency_ms: u64,
pub p99_latency_ms: u64,
pub operation_stats: HashMap<OperationType, OperationStats>,
pub churn_rate_per_minute: f64,
pub uptime_seconds: u64,
}Expand description
Telemetry statistics
Fields§
§total_operations: usize§p50_latency_ms: u64§p95_latency_ms: u64§p99_latency_ms: u64§operation_stats: HashMap<OperationType, OperationStats>§churn_rate_per_minute: f64§uptime_seconds: u64Trait Implementations§
Source§impl Clone for TelemetryStats
impl Clone for TelemetryStats
Source§fn clone(&self) -> TelemetryStats
fn clone(&self) -> TelemetryStats
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 moreSource§impl Debug for TelemetryStats
impl Debug for TelemetryStats
Auto Trait Implementations§
impl Freeze for TelemetryStats
impl RefUnwindSafe for TelemetryStats
impl Send for TelemetryStats
impl Sync for TelemetryStats
impl Unpin for TelemetryStats
impl UnwindSafe for TelemetryStats
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