otlp2records 0.9.0

Transform OTLP telemetry to flattened records
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Output serialization for Arrow RecordBatches
//!
//! Provides serialization to various formats:
//! - JSON (NDJSON - newline-delimited JSON)
//! - Arrow IPC (streaming format for cross-language interop)
//! - Parquet (optional, behind feature flag)

mod ipc;
mod json;

#[cfg(feature = "parquet")]
mod parquet;

pub use ipc::to_ipc;
pub use json::to_json;

#[cfg(feature = "parquet")]
pub use parquet::to_parquet;