Skip to main content

max / makenotwork

536 B · 25 lines History Blame Raw
1 //! PoM, Production Operations Monitor.
2 //!
3 //! Health checks, test orchestration, and peer mesh for monitoring deployed services.
4 //!
5 //! # Design
6 //!
7 //! The competitive positioning, the operational runbook, and the PoM/producer
8 //! health-contract pattern live in the maintainer wiki.
9 //! <!-- wiki: pom-overview -->
10
11 pub mod alerts;
12 pub mod api;
13 pub mod checks;
14 pub mod config;
15 pub mod dashboard;
16 pub mod db;
17 pub mod display;
18 pub mod error;
19 pub mod peer;
20 pub mod status;
21 pub mod tls;
22 pub mod tools;
23 pub mod types;
24 pub mod versions;
25