Skip to content

Readiness probe

GET
/health/ready
curl --request GET \
--url https://localhost:10001/health/ready

Reports whether the service can serve traffic by pinging the database, used by orchestrators to gate traffic

Service is ready

Media type application/json
object
database
string
service
string
status
string
timestamp
string
version
string
Example
{
"database": "ok",
"service": "governance-service",
"status": "ready",
"version": "1.0.0"
}

Service is not ready

Media type application/json
object
database
string
service
string
status
string
timestamp
string
version
string
Example
{
"database": "ok",
"service": "governance-service",
"status": "ready",
"version": "1.0.0"
}