aion-server 0.4.0

Deployable HTTP, gRPC, WebSocket, and worker endpoint for Aion workflows.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Server-level observability surfaces.

/// Health-check response helpers.
pub mod health;
/// Event-store decorator recording server metrics.
pub mod instrumented_store;
/// Metrics registry and rendering support.
pub mod metrics;
/// Tracing subscriber initialization support.
pub mod tracing;

pub use instrumented_store::InstrumentedEventStore;
pub use metrics::{Metrics, MetricsError};