mothership 0.0.100

Process supervisor with HTTP exposure - wrap, monitor, and expose your fleet
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! HTTP exposure layer via Rama
//!
//! Routes external traffic to fleet ships and bays.

mod cors_cache;
mod relay;
mod sensors;

pub use cors_cache::CorsCache;
pub use relay::HttpExposure;
pub use sensors::{
    MetricsRegistry, MetricsServer, global_metrics_registry, set_global_metrics_registry,
};