Webex · Schema
UtilizationMetricsT1SJ
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| peakCpu | number | Peak CPU usage during the time interval. |
| avgCpu | number | Average CPU usage during the time interval. |
| activeCalls | number | Maximum active calls at a point in the time interval. |
| activePrivateCalls | number | Maximum active private calls at a point in the time interval. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UtilizationMetricsT1SJ",
"title": "UtilizationMetricsT1SJ",
"type": "object",
"properties": {
"peakCpu": {
"type": "number",
"example": 54.54,
"description": "Peak CPU usage during the time interval."
},
"avgCpu": {
"type": "number",
"example": 4.27,
"description": "Average CPU usage during the time interval."
},
"activeCalls": {
"type": "number",
"example": 5,
"description": "Maximum active calls at a point in the time interval."
},
"activePrivateCalls": {
"type": "number",
"example": 1,
"description": "Maximum active private calls at a point in the time interval."
}
}
}