Skip to main content

ClickHouseExport

Trait ClickHouseExport 

Source
pub trait ClickHouseExport {
    // Required method
    fn export_clickhouse(
        &self,
        batch: &mut ClickHouseMetricBatch,
        name: &str,
        description: &str,
        time_unix_nano: u64,
    );
}
Expand description

Direct ClickHouse export trait for metric primitives.

Required Methods§

Source

fn export_clickhouse( &self, batch: &mut ClickHouseMetricBatch, name: &str, description: &str, time_unix_nano: u64, )

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§