McAfee (Trellix) · Schema
ApplianceStatus
AntivirusCybersecurityEndpoint ProtectionSecurityThreat Intelligence
Properties
| Name | Type | Description |
|---|---|---|
| hostname | string | Appliance hostname |
| uptime | string | Appliance uptime |
| cpuUsage | number | Current CPU usage percentage |
| memoryUsage | number | Current memory usage percentage |
| activeConnections | integer | Number of active proxy connections |
| version | string | Web Gateway software version |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApplianceStatus",
"title": "ApplianceStatus",
"type": "object",
"properties": {
"hostname": {
"type": "string",
"description": "Appliance hostname"
},
"uptime": {
"type": "string",
"description": "Appliance uptime"
},
"cpuUsage": {
"type": "number",
"format": "float",
"description": "Current CPU usage percentage"
},
"memoryUsage": {
"type": "number",
"format": "float",
"description": "Current memory usage percentage"
},
"activeConnections": {
"type": "integer",
"description": "Number of active proxy connections"
},
"version": {
"type": "string",
"description": "Web Gateway software version"
}
}
}