- Sync
- Async
Returns
DetailedHealthCheckResponse: Overall health plus per-service status details
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Return detailed health status for the API
def get_health() -> DetailedHealthCheckResponse
async def get_health() -> DetailedHealthCheckResponse
DetailedHealthCheckResponse: Overall health plus per-service status detailshealth = db.get_health()
print(health.status)
for svc in health.services:
print(svc.name, svc.status)
Was this page helpful?
