pub trait ProcessorConfig:
Healthcheck
+ Send
+ Sync {
// Required methods
fn arrow_schema(&self) -> SchemaRef;
fn compression(&self) -> &str;
}Expand description
Trait for Serverless Processor configurations.
Processors transform OTel data into Arrow/Parquet format using fixed schemas per signal type (logs, metrics, traces).
Required Methods§
Sourcefn arrow_schema(&self) -> SchemaRef
fn arrow_schema(&self) -> SchemaRef
Returns the Arrow schema to use for this signal type.
Sourcefn compression(&self) -> &str
fn compression(&self) -> &str
Returns the compression codec for output (e.g. lz4, snappy, zstd, gzip).