Skip to content

Liveness probe

GET
/health
curl --request GET \
--url https://localhost:10001/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": "governance-service",
"status": "healthy",
"version": "1.0.0"
}