06-25-2025 08:42 PM
Does anyone have an example vManage Webhook Alert for the 'CPU Usage' and 'Memory Usage'? Specifically, I need to know key/value for 'eventname', 'type' and 'component'.
Solved! Go to Solution.
06-26-2025 01:40 AM
Not sur this is 10% correct, scraped this from the api doc https://developer.cisco.com/docs/sdwan/overview/ - you might need to work with this data littel to get the results
{
"eventname": "cpu-usage",
"type": "alarm",
"component": "System",
"severity": "Critical",
"entry_time": 1640995200000,
"statcycletime": 1640995200000,
"message": "CPU usage crossed threshold",
"system_ip": "10.1.1.1",
"host_name": "vedge-01",
"site_id": "100",
"device_model": "vedge-cloud",
"peer_type": "vedge",
"rule_name_display": "CPU_Usage_High",
"component_name": "CPU",
"threshold": "80",
"current_value": "85.5",
"uuid": "C8K-12345678-1234-1234-1234-123456789012"
}
{
"eventname": "memory-usage",
"type": "alarm",
"component": "System",
"severity": "Major",
"entry_time": 1640995200000,
"statcycletime": 1640995200000,
"message": "Memory usage crossed threshold",
"system_ip": "10.1.1.1",
"host_name": "vedge-01",
"site_id": "100",
"device_model": "vedge-cloud",
"peer_type": "vedge",
"rule_name_display": "Memory_Usage_High",
"component_name": "Memory",
"threshold": "90",
"current_value": "92.3",
"uuid": "C8K-12345678-1234-1234-1234-123456789012"
}
06-26-2025 01:40 AM
Not sur this is 10% correct, scraped this from the api doc https://developer.cisco.com/docs/sdwan/overview/ - you might need to work with this data littel to get the results
{
"eventname": "cpu-usage",
"type": "alarm",
"component": "System",
"severity": "Critical",
"entry_time": 1640995200000,
"statcycletime": 1640995200000,
"message": "CPU usage crossed threshold",
"system_ip": "10.1.1.1",
"host_name": "vedge-01",
"site_id": "100",
"device_model": "vedge-cloud",
"peer_type": "vedge",
"rule_name_display": "CPU_Usage_High",
"component_name": "CPU",
"threshold": "80",
"current_value": "85.5",
"uuid": "C8K-12345678-1234-1234-1234-123456789012"
}
{
"eventname": "memory-usage",
"type": "alarm",
"component": "System",
"severity": "Major",
"entry_time": 1640995200000,
"statcycletime": 1640995200000,
"message": "Memory usage crossed threshold",
"system_ip": "10.1.1.1",
"host_name": "vedge-01",
"site_id": "100",
"device_model": "vedge-cloud",
"peer_type": "vedge",
"rule_name_display": "Memory_Usage_High",
"component_name": "Memory",
"threshold": "90",
"current_value": "92.3",
"uuid": "C8K-12345678-1234-1234-1234-123456789012"
}
06-26-2025 08:53 AM
Awesome, thanks! Just what I was looking for.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide