Skip to main content

PagerDuty

Avantra's integration with PagerDuty allows SAP monitoring alerts to create incidents in PagerDuty automatically. The integration reduces manual work, saving key technical staff time, ensuring a quicker response, and allowing PagerDuty to prioritize and manage the incident.

Avantra metrics sends an event to service in PagerDuty. Events from Avantra will trigger a new incident on the corresponding PagerDuty service or group as alerts into an existing incident. Once the metric has returned to its designated range, Avantra will send an instant event to the PagerDuty service to resolve the alert and associated incident on that service.

note

PagerDuty integration requires an Admin base role for account authorization. If you do not have this role, please contact an Admin or Account Owner within your organization to configure the integration.

Follow the steps below to integrate PagerDuty Events API with Avantra:

  1. In your PagerDuty account, navigate to Services and select Service Directory.
  2. To add a new service, click New Service, enter the name and short description in General Settings, and click Next.
  3. Select the Escalation Policy on the next page - generate your own or choose default and click Next.
  4. Configure PagerDuty alerts on the next page - Alert Grouping and Transient Alerts. Click Next.
  5. On the Integrations page, choose Events API v2 to add to the service or type in the needed integration name in the search tab. You can also choose Create service without an integration. Click Create Service to finalize the procedure.
note

You can add the integrations needed for your service later.

  1. On the service page, go to the Integrations tab and click the drop-down menu. The opened page will contain the integration key and URLs for Change events and Alert Events.

  2. To define a REST Output Channel in Avantra UI, navigate to Configuration > Notifications > Notifications [Global] in the top-level menu. Select the Channels tab and choose New > RESTful Web Service.

  3. In the window that appeared, fill in a Name and Description. The name of the Output Channel has to be unique.

  4. If you plan to restrict the Output Channel to one or multiple Customers, select the appropriate items from Customer Filter.

  5. Modify the URL field:

    1. Add the correct API endpoint to the Url field. These endpoints are valid but may need verification with PagerDuty during your setup procedure.
    2. Change the Method to POST and set the Content Type as JSON.
    3. Click Save.
  6. Use the following parameters below to create a JSON file. For more information, serr PagerDuty Developer Documentation: Send an Alert Event:

ParametersTypeDescription
routing_keyStringThis is the 32-character integration key for integration on a service or a global ruleset
event_actionStringThe type of event. Can be a trigger, acknowledge, or resolve
dedup_keyStringDeduplication key for correlating triggers and resolves. The maximum permitted length of this property is 255 characters
payload.summaryStringA brief text summary of the event used to generate the summaries/titles of any associated alerts. The maximum permitted length of this property is 1024 characters
payload.sourceStringThe unique location of the affected system, preferably a hostname or FQDN
payload.severityStringThe perceived severity of the event status is described concerning the affected system. This can be critical, error, warning, or info
payload.timestampTimestampThe time at which the emitting tool detected or generated the event
payload.componentStringComponent of the source machine that is responsible for the event, for example, MySQL or eth0
payload.groupStringLogical grouping of components of a service, for example, app-stack
payload.classStringThe class/type of the event
payload.custom_detailsObjectAdditional details about the event and affected system
imagesArray of ObjectsList of images to include
linksArray of ObjectsList of links to include
  1. To have more details in the event description, the real check information from Avantra can be added to the description field using the FreeMarker syntax. We recommend adding the following placeholders:
    • ${check.name}
    • ${system.name}
    • ${check.statusString}
    • ${check.date}
    • ${check.resultSummary}
  2. See the whole JSON example below for reference:
{ "payload": { "summary": "The status of check ${check.name} on system ${system.name} turned to ${check.statusString} at ${check.date}. The check returned the following status message: ${check.resultSummary}", "source": "System: ${system.name}", "severity": "warning" }, "routing_key": "bd1f0b636eb84d13b6dbba5764c63ec4", "event_action": "trigger" }

The value routing_key is the Integration Key from the service's Integrations tab.

  1. To configure a Notification Action, select Configuration > Notifications> Notifications [Global] from the top-level menu.
  2. In the Actions tab, choose New in the toolbar and select Action for Checks from the drop-down list.
  3. Fill in the field Name and Description (optional). The name of the Notification Action has to be unique. Click Next.
  4. Choose either Select a Pre-Defined System Selector or Define a specific 'Ad-Hoc' Custom Selection. In the first case, choose the desired Check Selector from the list. If you choose the Define specific 'Ad-Hoc' Custom Selection, then define a specific ad-hoc custom selection (which is only valid for this particular Notification Action). Click Next.
  5. Tick the Status checkboxes and Confirm value. Click Next.
  6. Choose the created Output Channel from the drop-down menu and click Finish.
  7. To test the configuration, switch to the Test tab. Choose the value for fields Monitored system and Check. Then, click Test.
  8. Once you test, your PagerDuty account will create the new incident and notify you according to PagerDuty settings.