micromegas 0.24.0

Micromegas is a scalable observability solution.
Documentation
pub mod axum_utils;

/// connection info utilities for Tonic services
pub mod connect_info_layer;

/// http utilities
pub mod http_utils;

/// scheduled task for daemon
pub mod cron_task;

/// routes for ingestion server based on axum
pub mod ingestion;

/// implementation of maintenance daemon keeping the lakehouse updated
pub mod maintenance;

/// minimal FlightSQL protocol implementation
pub mod flight_sql_service_impl;

/// FlightSQL server builder
pub mod flight_sql_server;

/// web server for perfetto traces
pub mod perfetto;

/// metadata about this implementation of FlightSQL
pub mod sqlinfo;

/// named keys for authentication
pub mod key_ring;

/// log uris of http requests
pub mod log_uri_service;

/// http server that redirects queries to the analytics server translating the response into json
pub mod http_gateway;

/// authentication for the gRPC stack
pub mod tonic_auth_interceptor;

/// health check service for gRPC servers
pub mod grpc_health_service;