vtcode-core 0.104.1

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Telemetry pipeline for real-time KPIs and historical benchmarking.

pub mod perf;
mod pipeline;

pub use pipeline::{TelemetryEvent, TelemetryPipeline};

/// Memory pool performance telemetry
#[derive(Debug, Clone)]
pub struct MemoryPoolTelemetry {
    pub string_hit_rate: f64,
    pub value_hit_rate: f64,
    pub vec_hit_rate: f64,
    pub total_allocations_avoided: usize,
}