Properties
| Name | Type | Description |
|---|---|---|
| serverName | string | |
| status | string | |
| uptime | string | Server uptime duration |
| version | string | |
| activeCalls | integer | |
| maxCalls | integer | Maximum concurrent call capacity |
| sipStackStatus | string | |
| cpuUsage | number | |
| memoryUsage | number | |
| timestamp | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "HealthStatus",
"type": "object",
"properties": {
"serverName": {
"type": "string"
},
"status": {
"type": "string"
},
"uptime": {
"type": "string",
"description": "Server uptime duration"
},
"version": {
"type": "string"
},
"activeCalls": {
"type": "integer"
},
"maxCalls": {
"type": "integer",
"description": "Maximum concurrent call capacity"
},
"sipStackStatus": {
"type": "string"
},
"cpuUsage": {
"type": "number"
},
"memoryUsage": {
"type": "number"
},
"timestamp": {
"type": "string"
}
}
}