Performs App Healthcheck
GET/healthcheck
Healthcheck
Request
Responses
- 200
- 503
The Health Check is successful
- application/json
- Schema
- Example (from schema)
Schema
status string
info
object
nullable
property name*
object
nullable
status string
property name* string
error
object
nullable
property name*
object
nullable
status string
property name* string
details
object
property name*
object
status string
property name* string
{
"status": "ok",
"info": {
"database": {
"status": "up"
}
},
"error": {},
"details": {
"database": {
"status": "up"
}
}
}
The Health Check is not successful
- application/json
- Schema
- Example (from schema)
Schema
status string
info
object
nullable
property name*
object
nullable
status string
property name* string
error
object
nullable
property name*
object
nullable
status string
property name* string
details
object
property name*
object
status string
property name* string
{
"status": "error",
"info": {
"database": {
"status": "up"
}
},
"error": {
"redis": {
"status": "down",
"message": "Could not connect"
}
},
"details": {
"database": {
"status": "up"
},
"redis": {
"status": "down",
"message": "Could not connect"
}
}
}
Loading...