Skip to content

Liveness probe

GET
/health
curl --request GET \
--url https://localhost:8080/health

Returns a static healthy response without checking dependencies, intended for orchestrator liveness probes

Health status

Media type application/json

Liveness status; reports that the service process is running, not that its dependencies are

object
service
string
status
string
timestamp
string format: date-time
version
string
Example
{
"service": "auth-service",
"status": "healthy",
"version": "1.0.0"
}