pub struct SessionSummary {Show 14 fields
pub session_hash: String,
pub total_events: u64,
pub dedup_hit_rate: f32,
pub l1_hit_rate: f32,
pub l2_hit_rate: f32,
pub avg_response_chars: f32,
pub compaction_count: u32,
pub total_baseline_tokens: u64,
pub total_final_tokens: u64,
pub savings_pct: f32,
pub duration_sec: f32,
pub ended_at_ms: i64,
pub sample_rate_applied: f32,
pub enrichment: EnrichmentEffectiveness,
}Expand description
Session-level roll-up written on session close.
Separate from per-event sink for two reasons: (1) the summary requires all events to be complete, (2) the summary is a natural unit for the tuner to read without re-scanning JSONL.
Fields§
§session_hash: String§total_events: u64§dedup_hit_rate: f32Fraction of events where L0 emitted a reference hint.
l1_hit_rate: f32§l2_hit_rate: f32§avg_response_chars: f32§compaction_count: u32§total_baseline_tokens: u64§total_final_tokens: u64§savings_pct: f32§duration_sec: f32§ended_at_ms: i64§sample_rate_applied: f32Fraction of events that were sampled (for scaling counts).
enrichment: EnrichmentEffectivenessPaper 3 enricher-effectiveness aggregates. Defaults to all-zero when no enrichment activity was observed in the session.
Trait Implementations§
Source§impl Clone for SessionSummary
impl Clone for SessionSummary
Source§fn clone(&self) -> SessionSummary
fn clone(&self) -> SessionSummary
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 SessionSummary
impl Debug for SessionSummary
Source§impl Default for SessionSummary
impl Default for SessionSummary
Source§fn default() -> SessionSummary
fn default() -> SessionSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionSummary
impl<'de> Deserialize<'de> for SessionSummary
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 SessionSummary
impl RefUnwindSafe for SessionSummary
impl Send for SessionSummary
impl Sync for SessionSummary
impl Unpin for SessionSummary
impl UnsafeUnpin for SessionSummary
impl UnwindSafe for SessionSummary
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