pub trait KernelHealth: Send + Sync {
// Required methods
fn is_healthy(&self) -> bool;
fn health_info(&self) -> HealthInfo;
}Expand description
Health check for monitoring
Minimal health interface - detailed metrics are in ObservabilityExtension
Required Methods§
Sourcefn is_healthy(&self) -> bool
fn is_healthy(&self) -> bool
Check if the kernel is healthy
Sourcefn health_info(&self) -> HealthInfo
fn health_info(&self) -> HealthInfo
Get basic health info (for plugins to consume)