aion-server 0.6.0

Aion workflow server library: HTTP, gRPC, WebSocket, and worker endpoints. Run it with the `aion` binary from the aion-cli crate.
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};