darpan 0.2.4

Linux developer service monitoring utility with auto-detection, real-time health checks, and interactive TUI for databases, APIs, Docker containers, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod checker;
mod http;
mod port;
mod process;
mod network;
mod traffic;
mod traits;

#[cfg(feature = "db-health-checks")]
mod database;

pub use checker::HealthChecker;
pub use network::{NetworkMonitor, ProcessNetStats, TrafficStats};
pub use traffic::TrafficBasedHealthChecker;
pub use traits::HealthCheckerTrait;