Health Check
Simple health check endpoint for the attestation service.
Endpoint
Authentication
No authentication required.
Response
Returns the service status and name.
Service status (always “healthy”)
Service identifier (“attestation-service”)
Example
curl https://your-attestation-service.com/health
Response
{
"status": "healthy",
"service": "attestation-service"
}
Implementation Details
This endpoint is useful for monitoring and health checks in orchestration systems like Docker Compose or Kubernetes.
Source: cvm/attestation-service/attestation_service.py:176-179