OpsGenie

Notifications with OpsGenie

Ascend's Monitoring and Notifications system enables operators to create a webhook that publishes events to an endpoint.

One option integrates Ascend events as an OpsGenie alert.

  1. Locate your OpsGenie API token.
  2. Create a new Ascend webhook from the Data Service settings.
  3. Set the Notification URL to the OpsGenie alert creation endpoint: https://api.opsgenie.com/v2/alerts
  4. Add a Header with key Authentication and value GenieKey YOUR_OPS_GENIE_API_KEY
  5. Add a Header with key Content-Type and value application/json.
  6. Select the events that you would like to trigger an alert in OpsGenie.
  7. Customize the event payload, mapping the Webhook Notification Event Variable to the fields required for an OpsGenie alert.
{
    "message": "Ascend component in error state",
    "source":"{{event.environment}}",
    "details":{"component_id":"{{event.component.id}}","component_name":"{{event.component.name}}"},
    "priority":"P1"
}
1800