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": "reprehenderit in ea sed",
"serverId": "sunt cillum",
"serverName": "qui nisi dolor consequat",
"services": [
{
"service": "laborum nulla consectetur Excepteur",
"status": "running"
},
{
"service": "dolor cupidatat dolor veniam ex",
"status": "running"
},
{
"service": "consequat occaecat dolor",
"status": "failed"
},
{
"service": "minim tempor reprehenderit",
"status": "failed"
}
],
"timestamp": -84628966,
"apps": "running",
"adapters": "running"
}
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"
]
}
}
}