pub struct ContextStoreStats {
pub active_traces: u64,
pub total_spans: u64,
pub sampled_traces: u64,
pub dropped_traces: u64,
pub expired_traces: u64,
}Expand description
Statistics for the context store
Fields§
§active_traces: u64Number of traces currently being tracked
total_spans: u64Total number of spans across all active traces
sampled_traces: u64Cumulative count of traces that were sampled
dropped_traces: u64Cumulative count of traces dropped due to capacity limits
expired_traces: u64Cumulative count of traces removed due to TTL expiry
Trait Implementations§
Source§impl Clone for ContextStoreStats
impl Clone for ContextStoreStats
Source§fn clone(&self) -> ContextStoreStats
fn clone(&self) -> ContextStoreStats
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 ContextStoreStats
impl Debug for ContextStoreStats
Source§impl Default for ContextStoreStats
impl Default for ContextStoreStats
Source§fn default() -> ContextStoreStats
fn default() -> ContextStoreStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContextStoreStats
impl RefUnwindSafe for ContextStoreStats
impl Send for ContextStoreStats
impl Sync for ContextStoreStats
impl Unpin for ContextStoreStats
impl UnsafeUnpin for ContextStoreStats
impl UnwindSafe for ContextStoreStats
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