pub struct AdvancedEventStats {
pub basic: BasicStats,
pub latency: LatencyStats,
pub throughput: ThroughputStats,
pub queue: QueueStats,
pub windows: WindowedStats,
}Expand description
Advanced event processing statistics with percentile tracking
Fields§
§basic: BasicStatsBasic event counts
latency: LatencyStatsLatency percentiles by priority
throughput: ThroughputStatsThroughput metrics
queue: QueueStatsQueue utilization statistics
windows: WindowedStatsTime-windowed statistics
Implementations§
Source§impl AdvancedEventStats
impl AdvancedEventStats
Sourcepub fn export(&self, format: ExportFormat) -> String
pub fn export(&self, format: ExportFormat) -> String
Export metrics in the specified format
Trait Implementations§
Source§impl Clone for AdvancedEventStats
impl Clone for AdvancedEventStats
Source§fn clone(&self) -> AdvancedEventStats
fn clone(&self) -> AdvancedEventStats
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 AdvancedEventStats
impl Debug for AdvancedEventStats
Source§impl<'de> Deserialize<'de> for AdvancedEventStats
impl<'de> Deserialize<'de> for AdvancedEventStats
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 AdvancedEventStats
impl RefUnwindSafe for AdvancedEventStats
impl Send for AdvancedEventStats
impl Sync for AdvancedEventStats
impl Unpin for AdvancedEventStats
impl UnwindSafe for AdvancedEventStats
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> Inspectable for T
impl<T> Inspectable for T
Source§fn inspect_if(self, condition: bool, label: &str) -> Selfwhere
Self: Debug,
fn inspect_if(self, condition: bool, label: &str) -> Selfwhere
Self: Debug,
Conditionally inspect this value
Source§fn inspect_with<F>(self, label: &str, f: F) -> Self
fn inspect_with<F>(self, label: &str, f: F) -> Self
Inspect with a custom formatter