context_creator/core/telemetry/mod.rs
1//! Telemetry processing module for OpenTelemetry data enrichment
2
3pub mod correlator;
4pub mod enricher;
5pub mod otlp_parser;
6pub mod types;
7
8pub use correlator::{CorrelationKey, CorrelationResult, TelemetryCorrelator};
9pub use enricher::TelemetryEnricher;
10pub use otlp_parser::{JsonParser, OtlpParser, ProtobufParser};
11pub use types::*;