PagerDuty¶
Overview¶
Use monitors to send alerts to PagerDuty by configuring a Webhook channel action. Incoming events from Observe trigger a new incident for a PagerDuty service, or grouped with alerts for an existing incident.
Requirements¶
To configure this integration, you need the following:
A PagerDuty admin login - If your login does not have the “Admin” base role, contact an Admin or Account Owner in your organization.
Integration Tutorial¶
In PagerDuty¶
Integrating with a PagerDuty service¶
From the Configuration menu, select Services.
Follow the appropriate steps, depending on if you have an existing service or are creating a new service:
If you are creating a new service for your integration:
Follow the instructions at Create a New Service in the PagerDuty documentation, selecting Observe as the Integration Type in step 4.
When you have finished creating your service, skip to the In Observe section, below.
If you are adding an integration to an existing service:
Click the name of the service you want to add the integration to.
Select the Integrations tab for this service and click New Integration.
Continue with the instructions in this section.
Enter an Integration Name in the format
monitoring-tool-service-name
(e.g. “Observe-K8s-Cluster”.)In the Integration Type menu, select Observe.
Click Add Integration to save the integration. PagerDuty redirects you to the Integrations tab for your service.
Copy your Integration Key and save it in a safe location. You need this for the next section.
Figure 1 - PagerDuty integration key
In Observe¶
Creating a channel action¶
After you have your PagerDuty integration key, return to Observe and complete the following steps:
Under Alerting, click Channel Actions.
Click New Channel Action.
Configure a new channel action:
In Content (section 1):
For Channel Action Type, select Webhook.
In URL, enter the following URL:
https://events.pagerduty.com/v2/enqueue
Accept the default Method of POST
In Headers, add the following header:
Content-Type = application/json
Paste the following template into Body, replacing the default template:
{ "dedup_key":"{{notification.uuid}}", "payload": { "summary": "{{monitor.name}}: {{notification.description}}", "timestamp": "{{notification.startTime}}", "source": "Observe Kubernetes Environment", "severity": "info", "custom_details": { "Observe Monitor": "{{monitor.name}}", "Trigger at": "{{notification.startTime}}", "Importance": "{{monitor.notifyWhenDetails.importance}}", "Trigger Condition": "{{monitor.triggerWhen}}", "Notification Condition": "{{monitor.notifyWhen}}", {{#notification.hasValues}} "Triggered_By": " {{#notification.valuesWithFieldName}} {{fieldName}}: {{#values}}{{.}}{{/values}},\n{{/notification.valuesWithFieldName}}", {{/notification.hasValues}} "Description": "{{notification.description}}", {{#notification.resourcesWithLinkType}} "{{linkType}}": "{{#instances}}{{name}}{{/instances}}", {{/notification.resourcesWithLinkType}} {{#notification.valuesByFieldName.scope}} "Scope": "{{.}}", {{/notification.valuesByFieldName.scope}} {{#notification.valuesByFieldName.target}} "Target": "{{.}}", {{/notification.valuesByFieldName.target}} "Profile": "high" } }, "routing_key": "ROUTING_KEY", {{#notification.hasResources}} "links": [ {{#notification.resources}} { "href": "{{url}}", "text": "{{name}}" }, {{/notification.resources}} { "href": "#", "text": "End of List" } ], {{/notification.hasResources}} "event_action":{{#notification.isNew}} "trigger"{{/notification.isNew}}{{#notification.isEnded}}"resolve"{{/notification.isEnded}}, "client": "Observe Notification Link", "client_url": "{{notification.url}}" }
Replace
ROUTING_KEY
in the above template with your routing key. This is the integration key that you created earlier.Note
Note: You may customize your payload, for details see Customizing alert messages
Click Send Test Notification and verify no errors. You may also select non-synthetic sample data by expanding the Sample Data and Preview section and changing the dropdown from Static Sample Data. (Optional)
In Delivery (section 2):
In Send Notifications From The Following Channels, select a channel or create a new channel. (Optional.)
In Delivery Frequency, update the frequency if different rate limiting is desired. (Optional.)
In Channel Action Name (section 3):
In Channel Action Name, give this action a unique name.
Click Create Channel Action to save.
Auto-resolve PagerDuty incidents¶
You may optionally configure an ending notification to automatically resolve a PagerDuty incident.
In Observe¶
To enable auto-resolving incidents, configure a new webhook channel action:
Edit an existing channel action, or create a new one following the steps in Creating a channel action, above.
Update the Body template to add a new key,
is_ended
, incustom_details
:"custom_details": { "is_ended": "{{notification.isEnded}}", "Observe Monitor": "{{monitor.name}}", "Trigger at": "{{notification.startTime}}",
When an incident is resolved and Observe sends an ended notification, the
is_ended
key triggers the PagerDuty auto-resolve event rule.In the Delivery section, under Status Updates, enable Send update that notification has ended to generate a notification when the monitor condition has resolved.
In PagerDuty¶
Navigate to the Service Directory and select the service you wish to configure.
In the Service panel, select the Settings tab.
Under Event Management, click Basic Service Event Rules and then New Event Rule.
Under When events match these conditions, choose Custom Details from the dropdown and enter the
custom_details
value you configured in Observe. Example:is_ended
.In the second condition dropdown, select equals and enter the value
true
.Figure 2 - PagerDuty event rule conditions
Click Do these things to open the actions panel.
Click Advanced, check Set a custom trigger/resolve action and select Always resolve an alert.
Figure 3 - PagerDuty event rule action
Click Save Rule.
Test the auto-resolve rule¶
To test creating and resolving incidents:
In Observe, open your channel action configuration and click Send Test New Notification.
In PagerDuty, confirm a new incident was opened.
In Observe, select Send Test Ended Notification from the dropdown next to the test notification button.
In PagerDuty, confirm the incident was closed.
How to Uninstall¶
Follow these steps to uninstall the PagerDuty Alert Channel from Observe:
From the left navigation pane, open the Other pane by clicking “…”
Under Alerting, click Channel Actions.
Find the action you previously created.
Click “…” to the right of the Channel Action and select Delete.
Confirm by clicking Delete Channel Action.