micromegas 0.1.6

Micromegas is a scalable observability solution.
Documentation
//! micromegas : scalable telemetry

pub use chrono;
pub use datafusion;
pub use object_store;
pub use sqlx;
pub use uuid;

pub mod telemetry {
    pub use micromegas_telemetry::*;
}

pub mod telemetry_sink {
    pub use micromegas_telemetry_sink::*;
}

pub mod tracing {
    pub use micromegas_tracing::*;
}

pub mod ingestion {
    pub use micromegas_ingestion::*;
}

pub mod analytics {
    pub use micromegas_analytics::*;
}

pub mod axum_utils;