Summary
Get status.
Description
Get status of current IAP.
Route
GET /health/status
Roles
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
This method has no parameters |
Copied to Clipboard
{
"type": "object",
"properties": {},
"required": [],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
status |
object |
status of the current IAP. |
Copied to Clipboard
{
"host": "Lorem laboris exercitation esse dolore",
"serverId": "proident minim",
"serverName": "reprehenderit est ut",
"services": [
{
"service": "laboris",
"status": "failed"
},
{
"service": "aliquip magna et",
"status": "running"
},
{
"service": "eu in dolor",
"status": "running"
},
{
"service": "pariatur",
"status": "failed"
},
{
"service": "mollit sunt",
"status": "failed"
}
],
"timestamp": 62733586,
"apps": "degraded",
"adapters": "degraded"
}
Copied to Clipboard
{
"title": "status",
"type": "object",
"properties": {
"host": {
"type": "string"
},
"serverId": {
"type": "string"
},
"serverName": {
"type": "string"
},
"services": {
"type": "array",
"items": {
"type": "object",
"properties": {
"service": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"running",
"failed"
]
}
}
}
},
"timestamp": {
"type": "integer"
},
"apps": {
"type": "string",
"enum": [
"running",
"degraded"
]
},
"adapters": {
"type": "string",
"enum": [
"running",
"degraded"
]
}
}
}