Healthz
GET/healthz
Healthz
Parse the app status and figure out if the app is ready to receive requests.
The /healthz
endpoint is used to check if the server is ready to receive requests. A 200
response indicates that it is, a 503 response indicates that there are no models attached and
ready to process requests.
Responses​
- 200
- 503
Backend/python reader is fully loaded and can process requests.
- application/json
- Schema
- Example (from schema)
Schema
ready booleanrequired
{
"ready": true
}
Server is not available
Loading...