HealthCheck

Type Alias HealthCheck 

Source
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: String

The overall status of the API (e.g., “healthy”, “degraded”).

§timestamp: String

The timestamp of when the health check was performed.

§uptime: f64

The uptime of the system in seconds.

§services: ServiceStatus

The status of individual services.