pub struct SpanShipStats {
pub sent: AtomicU64,
pub dropped_queue_full: AtomicU64,
pub dropped_send_failed: AtomicU64,
}Expand description
Counters for the span shipper. A trace pipeline that drops silently reads, at the destination, as an absence of traffic.
Fields§
§sent: AtomicU64§dropped_queue_full: AtomicU64§dropped_send_failed: AtomicU64Trait Implementations§
Source§impl Debug for SpanShipStats
impl Debug for SpanShipStats
Source§impl Default for SpanShipStats
impl Default for SpanShipStats
Source§fn default() -> SpanShipStats
fn default() -> SpanShipStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for SpanShipStats
impl RefUnwindSafe for SpanShipStats
impl Send for SpanShipStats
impl Sync for SpanShipStats
impl Unpin for SpanShipStats
impl UnsafeUnpin for SpanShipStats
impl UnwindSafe for SpanShipStats
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