vtcode_core/telemetry/mod.rs
1//! Telemetry pipeline for real-time KPIs and historical benchmarking.
2
3pub mod perf;
4mod pipeline;
5
6pub use pipeline::{TelemetryEvent, TelemetryPipeline};
7
8/// Memory pool performance telemetry
9#[derive(Debug, Clone)]
10pub struct MemoryPoolTelemetry {
11 pub string_hit_rate: f64,
12 pub value_hit_rate: f64,
13 pub vec_hit_rate: f64,
14 pub total_allocations_avoided: usize,
15}