micromegas_analytics/lakehouse/otel/mod.rs
1/// Helpers for OTel attribute / `AnyValue` → JSONB translation
2pub mod attrs;
3/// Implementation of `BlockProcessor` for OTel logs
4pub mod logs_block_processor;
5/// Implementation of `BlockProcessor` for OTel metrics (Sum / Gauge → measures)
6pub mod metrics_block_processor;
7/// Implementation of `BlockProcessor` for OTel spans
8pub mod spans_block_processor;
9/// Arrow schema for the otel_spans view
10pub mod spans_table;
11/// JIT-only per-process view of OTel spans
12pub mod spans_view;