Last update:2026-07-10 16:38:27
Use Webhook callbacks to receive alert notifications at a custom URL, allowing you to build automated monitoring and response workflows. This guide walks you through the configuration and testing process.
To use the Webhook feature, you must first create an alert rule that will trigger the notification.
When creating the alert rule, you need to specify the destination URL for the Webhook callback.
Note: Your Webhook endpoint must be able to correctly parse and respond to POST requests from the Cloud Monitor system to avoid notification failures.
To confirm that your configuration is correct, perform a test.
The callback is sent as a POST request containing a JSON body with the following parameters. Make sure your endpoint can handle additional parameters, as new fields may be added in the future.
Here is an example of the JSON payload your endpoint will receive:
{
"loginName": "user@example.com",
"alarmTime": "2025-07-09T15:22:00Z",
"ruleName": "High Bandwidth Alert",
"monitor": "Total bandwidth exceeded 100Gbps."
}
| Parameter | Type | Description |
|---|---|---|
| loginName | string | The account name associated with the alert rule. |
| alarmTime | string | The timestamp when the alert was triggered. |
| ruleName | string | The name of the alert rule that was triggered. |
| monitor | string | The content or description of the alert. |
If you do not receive the test notification, check your network connection and endpoint configuration to ensure they are working correctly.
If you are not receiving notifications, check the following common issues:
Once configured, your Webhook integration enables automated, real-time event notifications. You can then build custom logic to parse these alerts and trigger automated responses, significantly improving incident management efficiency.