Properties
| Name | Type | Description |
|---|---|---|
| hostname | string | |
| status | string | |
| uptime | string | |
| version | string | |
| activeSessions | integer | |
| maxSessions | integer | |
| threadPool | object | |
| cpuUsage | number | |
| memoryUsage | object | |
| deployedApplications | integer | |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "VxmlServerStatus",
"type": "object",
"properties": {
"hostname": {
"type": "string"
},
"status": {
"type": "string"
},
"uptime": {
"type": "string"
},
"version": {
"type": "string"
},
"activeSessions": {
"type": "integer"
},
"maxSessions": {
"type": "integer"
},
"threadPool": {
"type": "object"
},
"cpuUsage": {
"type": "number"
},
"memoryUsage": {
"type": "object"
},
"deployedApplications": {
"type": "integer"
},
"timestamp": {
"type": "string"
}
}
}