pub type HealthCheck = HealthStatus;Expand description
A legacy type alias for HealthStatus.
Aliased Type§
pub struct HealthCheck {
pub status: String,
pub timestamp: String,
pub uptime: f64,
pub services: ServiceStatus,
}Fields§
§status: StringThe overall status of the API (e.g., “healthy”, “degraded”).
timestamp: StringThe timestamp of when the health check was performed.
uptime: f64The uptime of the system in seconds.
services: ServiceStatusThe status of individual services.