Process liveness check
import requests
url = "https://api.13-215-85-171.sslip.io/healthz"
response = requests.get(url)
print(response.text)curl --request GET \
--url https://api.13-215-85-171.sslip.io/healthz{
"status": "ok"
}Health
Process liveness check
Public process-liveness check. This route proves only that the API process can serve HTTP; it is not fleet readiness, DB readiness, runtime-host readiness, worker readiness, or artifact-cache readiness.
GET
/
healthz
Process liveness check
import requests
url = "https://api.13-215-85-171.sslip.io/healthz"
response = requests.get(url)
print(response.text)curl --request GET \
--url https://api.13-215-85-171.sslip.io/healthz{
"status": "ok"
}Response
200 - application/json
API process is live
Example:
"ok"