Get started with Jira Service Management for admins
Your first stop for learning how to get started with Jira Service Management.
If you’re a customer who shifted your operations from Opsgenie to Jira Service Management, adding new instances of this integration isn’t possible in Jira Service Management. You can only edit the integrations that originally shifted from Opsgenie.
Currently, we do not support Firebase Crashlytics.
Jira Service Management has a native integration with Crashlytics. Crashlytics can send notifications of crash reports 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 via email, text messages (SMS), phone calls and iPhone & Android push notifications, and escalates alerts until the alert is acknowledged or closed.
When Crashlytics triggers an alert, an alert is created in Jira Service Management automatically through the integration.
To edit a Crashlytics integration in Jira Service Management, complete the following steps:
Go to your team’s operations page.
On the left navigation panel, select Integrations.
Search for your Crashlytics integration.
Edit the integration settings and rules as necessary.
Use the instructions in this section if applicable.
In Crashlytics, go to App Settings page. Click on your app.
From the opening window, select Jira Service Management under the tab "Service Hooks".
Paste the API key you copied before into "Opsgenie API Key"
Click Verify.
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"event": "issue_impact_change",
"payload": {
"title": "issue title",
"method": "method name",
"impact_level": 1,
"impacted_devices_count": 16,
"crashes_count": 54,
"app": {
"name": "app name",
"bundle_identifier": "foo.bar.baz",
"platform": "ios"
},
"url": "http://crashlytics.com/full/url/to/issue"
}
}
JSON
1
2
3
4
5
6
7
8
9
10
11
{
"event": "issue_impact_change",
"title": "issue title",
"method": "method name",
"impact_level": 1,
"impacted_devices_count": 16,
"crashes_count": 54,
"app_name": "app name",
"bundle_identifier": "foo.bar.baz",
"platform": "ios"
}
Was this helpful?