Api
Get System Health
Get health status of all system services. Story 4.2 AC6: API endpoints expose real-time system health with status indicators. Service status values: healthy, degraded, down (mapped to GREEN/YELLOW/RED in dashboard UI). Returns: SystemHealthResponse with all service health statuses
Get health status of all system services.
Story 4.2 AC6: API endpoints expose real-time system health with status indicators. Service status values: healthy, degraded, down (mapped to GREEN/YELLOW/RED in dashboard UI).
Returns: SystemHealthResponse with all service health statuses
AuthorizationBearer <token>
In: header
Response Body
application/json
curl -X GET "https://loading/api/v1/monitoring/health"{
"overall_status": "green",
"services": [
{
"dashboard_status": "green",
"error_count": 0,
"error_message": "string",
"last_check": "string",
"latency_ms": 0,
"provider": "string",
"service": "string",
"status": "healthy"
}
],
"timestamp": "string"
}