• Products
  • Get started
  • Documentation
  • Resources

Integrate with Catchpoint

This article highlights a new alerting feature that's natively available in Jira Service Management which is gradually rolling out to some Jira Service Management Cloud customers. It may not yet be visible or available on your site.

Catchpoint Logo

What does the integration offer?

Catchpoint sends alert notifications to Jira Service Management API, with detailed information. Jira Service Management acts as a dispatcher for these alerts, determines the right people to notify based on on-call schedules– notifies them using email, text messages (SMS), phone calls and iOS & Android push notifications, and escalates alerts until the alert is acknowledged or closed.

How does the integration work?

  • When an alert is created in Catchpoint, an alert is also created in Jira Service Management automatically through the integration.

  • When alert notification level is changed for a Catchpoint test, the alert that created in Jira Service Management is closed automatically.

Set up the integration

Catchpoint is an API-based integration. Setting it up involves the following steps:

  • Add a Catchpoint integration in Jira Service Management

  • Configure the integration in Catchpoint

Add a Catchpoint integration

If you're using the Free or Standard plan in Jira Service Management, you can only add this integration from your team’s operations page. To access the feature through Settings (gear icon) > Products (under JIRA SETTINGS) > OPERATIONS, you need to be on Premium or Enterprise plan.

Adding an integration from your team’s operations page makes your team the owner of the integration. This means Jira Service Management only assigns the alerts received through this integration to your team.

To add a Catchpoint integration in Jira Service Management, complete the following steps:

  1. Go to your team’s operations page.

  2. On the left navigation panel, select Integrations and then Add integration.

  3. Run a search and select “Catchpoint”.

  4. On the next screen, enter a name for the integration.

  5. Optional: Select a team in Assignee team if you want a specific team to receive alerts from the integration.

  6. Select Continue.
    The integration is saved at this point.

  7. Expand the Steps to configure the integration section and copy the API URL.
    You will use this URL while configuring the integration in Catchpoint later.

  8. Select Turn on integration.
    The rules you create for the integration will work only if you turn on the integration.

Configure the integration in Catchpoint

To configure the integration of Catchpoint with Jira Service Management, complete the following steps:

  1. In Catchpoint, go to Settings > API.

  2. In the Alert API section, select Enable.

  3. Select Add Endpoint.

  4. Paste the API URL copied previously into Endpoint URL.

  5. Select “Template” for Format.

  6. Enter a name for the template. For example, “JSM”.

  7. Select Add Endpoint.

  8. Select “JSON” for Format.

  9. Copy the contents of this text file and paste them into the template.

  10. Select Save.

Customize Catchpoint alert templates for additional information for Jira Service Management. Following is an example of the alertCreateDate field added to the template:

JSON

1 2 3 4 5 6 7 8 9 10 11 12 { "testName": "${TestName}", "testId": "${TestId}", "testUrl": "${TestUrl}", "alertTypeId": "${AlertTypeId}", "productName": "${ProductName}", "clientId": "${ClientId}", "notificationLevel": "${switch("${notificationLevelId}","0","WARNING","1","CRITICAL","3","OK")}", "nodeName":"${nodeDetails("${nodeName}")}", "nodeServerAddress":"${nodeDetails("${NodeServerAddress}")}", "alertCreateDate":"${alertCreateDateUtc}" }

You can use the {{_payload.variable_name}} variable for alert properties too. Read more about dynamic alert properties.

Sample payload sent from Catchpoint

Create Alert payload (in JSON format)

1 2 3 4 5 6 7 8 9 10 11 12 13 { "message": "WARNING - Yahoo Test", "testName": "Yahoo Test", "testId": "81093", "testUrl": "http://www.yahoo.com", "alertTypeId": "7", "productName": "tests", "clientId": "24", "notificationLevel": "WARNING", "nodeName": "New York - Level3", "nodeServerAddress": "98.139.180.149", "description": "Description" }

 

Additional Help