darpan 0.2.5

Linux developer service monitoring utility with auto-detection, real-time health checks, and interactive TUI for databases, APIs, Docker containers, and more
Documentation
mod checker;
pub mod health_registry;
pub mod http;
pub mod port;
pub mod process;
pub mod network;
pub mod script;
pub mod traffic;
pub mod traits;

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

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