context-creator 1.5.0

High-performance CLI tool to convert codebases to Markdown for LLM context
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Telemetry processing module for OpenTelemetry data enrichment

pub mod correlator;
pub mod enricher;
pub mod otlp_parser;
pub mod types;

pub use correlator::{CorrelationKey, CorrelationResult, TelemetryCorrelator};
pub use enricher::TelemetryEnricher;
pub use otlp_parser::{JsonParser, OtlpParser, ProtobufParser};
pub use types::*;