API Reference
Health check and metrics endpoints
curl -X GET "http://localhost:8080/health"{
"status": "ok"
}curl -X GET "http://localhost:8080/health/ready"{
"status": "up",
"components": [
{
"name": "string",
"status": "up",
"latency_ms": 0,
"error": "string"
}
]
}{
"status": "down",
"components": [
{
"name": "string",
"status": "up",
"latency_ms": 0,
"error": "string"
}
]
}curl -X GET "http://localhost:8080/metrics""string"Was this page helpful?