pub struct SketchTelemetry {
pub ring_opcode: CountMinSketch,
pub active_opcode: CountMinSketch,
pub tenant: CountMinSketch,
pub status: CountMinSketch,
pub dispatch_metrics: CountMinSketch,
pub total_slots: u64,
pub active_slots: u64,
}Expand description
Compact sketch summary derived from a megakernel telemetry snapshot.
Fields§
§ring_opcode: CountMinSketchRing slots by opcode, regardless of terminal status.
active_opcode: CountMinSketchActive ring slots by opcode.
tenant: CountMinSketchRing slots by tenant id.
status: CountMinSketchRing slots by raw status discriminant.
dispatch_metrics: CountMinSketchControl-buffer dispatch metrics by opcode metric index.
total_slots: u64Total decoded ring slots.
active_slots: u64Active decoded ring slots.
Trait Implementations§
Source§impl Clone for SketchTelemetry
impl Clone for SketchTelemetry
Source§fn clone(&self) -> SketchTelemetry
fn clone(&self) -> SketchTelemetry
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 SketchTelemetry
impl Debug for SketchTelemetry
impl Eq for SketchTelemetry
Source§impl PartialEq for SketchTelemetry
impl PartialEq for SketchTelemetry
Source§fn eq(&self, other: &SketchTelemetry) -> bool
fn eq(&self, other: &SketchTelemetry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SketchTelemetry
Auto Trait Implementations§
impl Freeze for SketchTelemetry
impl RefUnwindSafe for SketchTelemetry
impl Send for SketchTelemetry
impl Sync for SketchTelemetry
impl Unpin for SketchTelemetry
impl UnsafeUnpin for SketchTelemetry
impl UnwindSafe for SketchTelemetry
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.