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": "fugiat",
"serverId": "qui officia",
"serverName": "nisi incididunt",
"services": [
{
"service": "ea aliqua occaecat nulla",
"status": "running"
},
{
"service": "eu ut fugiat ex",
"status": "running"
},
{
"service": "exercitation",
"status": "running"
},
{
"service": "ad id cupidatat pariatur in",
"status": "running"
}
],
"timestamp": -41677544,
"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"
]
}
}
}