Skip to content

health

Generic health check endpoint.

healthcheck()

Perform a health check on artifact store server.

Source code in mlte/backend/api/endpoints/health.py
 9
10
11
12
@router.get("/healthz")
def healthcheck():
    """Perform a health check on artifact store server."""
    return {"status": "healthy"}