• Products
  • Get started
  • Documentation
  • Resources

Integrate with Azure OMS

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.

Azure OMS logo

What does the integration offer?

Use the Azure OMS Integration to forward Azure OMS alerts to Jira Service Management. Jira Service Management determines the right people to notify based on on-call schedules- using email, text messages (SMS), phone calls, iOS & Android push notifications, and escalates alerts until they are acknowledged or closed.

How does the integration work?

When an alert is created in Azure OMS, an alert is automatically created in Jira Service Management.

Set up the integration

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

  • Add an Azure OMS integration in Jira Service Management

  • Configure the integration in Azure OMS

Add an Azure OMS 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 an Azure OMS 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 “Azure OMS”.

  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 Webhook URL.
    You will use this URL while configuring the integration in Azure OMS 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 Azure OMS

To configure the integration in Azure OMS, complete the following steps:

  1. On the Azure Portal, select Logic Apps.

  2. Create a logic app.

  3. Select Consumption for the plan type.

  4. Open the logic app and select Azure Monitor - Metrics Alert Handler for the template.

  5. Select Add a new step and select HTTP REST request.

  6. Select POST for the method.

  7. Paste the webhook URL previously copied from Jira Service Management into URI.

  8. Copy-paste the following into the body:

    1 2 3 4 5 6 7 8 9 10 11 12 { "alertRuleName": "§§@{triggerBody()['data']['essentials']['alertRule']}§§", "alertThresholdOperator": "§§@{triggerBody().data.alertContext.condition.allOf[0].operator}§§", "alertThresholdValue": "§§@{triggerBody().data.alertContext.condition.allOf[0].threshold}§§", "linkToSearchResults": "§§@{triggerBody().data.alertContext.condition.allOf[0].linkToSearchResultsUI}§§", "resultCount": "§§@{triggerBody().data.alertContext.condition.allOf[0].metricValue}§§", "searchIntervalEndtimeUtc": "§§@{triggerBody()['data']['alertContext']['condition']['windowEndTime']}§§", "searchIntervalInSeconds": "§§@{dateDifference(triggerBody()['data']['alertContext']['condition']['windowStartTime'], triggerBody()['data']['alertContext']['condition']['windowEndTime'])}§§", "searchIntervalStartTimeUtc": "§§@{triggerBody()['data']['alertContext']['condition']['windowStartTime']}§§", "searchQuery": "§§@{triggerBody().data.alertContext.condition.allOf[0].searchQuery}§§", "workspaceID": "§§@{triggerBody().data.alertContext.condition.allOf[0].operator}§§" }
  9. Select Save.

  10. Go to Analytics workspace.

  11. Create a query and select New Alert rule.

  12. Add conditions against which you want to create alerts.

  13. Go to the Actions tab.

  14. Select Create Action Group and add actions.
    While adding actions, select Logic app for the action type and select the logic app you created earlier.

  15. Select Save.

Sample payload sent from Azure OMS

Create alert payload (in JSON format)

1 2 3 4 5 6 7 8 9 10 11 12 { "alertRuleName":"§§#alertrulename§§", "alertThresholdOperator":"§§#thresholdoperator§§", "alertThresholdValue":"§§#thresholdvalue§§", "linkToSearchResults":"§§#linktosearchresults§§", "resultCount":"§§#searchresultcount§§", "searchIntervalEndtimeUtc":"§§#searchintervalendtimeutc§§", "searchIntervalInSeconds":"§§#searchinterval§§", "searchIntervalStartTimeUtc":"§§#searchintervalstarttimeutc§§", "searchQuery":"§§#searchquery§§", "workspaceID":"§§#workspaceid§§" }

 

Additional Help