Get started with Opsgenie as a user
Learn how to configure your profile, get notifications from Opsgenie and view on-call schedules.
Use Opsgenie’s Raygun Integration to forward Raygun notifications to Opsgenie. Opsgenie determines the right people to notify based on on-call schedules– notifies via email, text messages (SMS), phone calls, iOS & Android push notifications, and escalates alerts until the alert is acknowledged or closed.
When an error is captured in Raygun, it creates an alert in Opsgenie.
You can add this integration from your team dashboard
If you're using Opsgenie's Free or Essentials plan, or if you’re using Opsgenie with Jira Service Management's Standard plan, you can only add this integration from your team dashboard as the Integrations page under Settings is not available in your plan.
Adding the integration from your team dashboard will make your team the owner of the integration. This means Opsgenie will assign the alerts received through this integration to your team only.
To do that,
Go to your team’s dashboard from Teams,
Select Integrations, and select Add integration.
Follow the rest of the steps to complete the integration.
Go to Settings > Integrations. Search for Raygun and select Add.
Specify who is notified of Raygun notifications using the Responders field. Autocomplete suggestions are provided as you type.
Copy the integration URL which includes Opsgenie’s endpoint as well as the API key.
Select Save Integration.
In Raygun, go to "Integrations" from the project page.
Select Webhook.
Populate the webhook URL field with the integration URL copied previously when saving integration.
Click Save.
All set! Now manage Raygun notifications at Opsgenie and leverage its full alerting functionality:
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"event":"error_notification",
"eventType":"NewErrorOccurred",
"error": {
"url":"http://app.raygun.io/error-url",
"message":"",
"firstOccurredOn":"1970-01-28T01:49:36Z",
"lastOccurredOn":"1970-01-28T01:49:36Z",
"usersAffected":1,
"totalOccurrences":1,
"instance": {
"tags": ["test", "error-page", "v1.0.1", "env:staging"],
"affectedUser": {
"Identifier": "a9b7d84a-c0d3-4e7e-9ded-1ec13d033846",
"IsAnonymous": true,
"UUID": "a9b7d84a-c0d3-4e7e-9ded-1ec13d033846"
},
"customData": {
"pageName": "Error Page",
"userLoggedIn": true
}
}
},
"application": {
"name":"application name",
"url":"http://app.raygun.io/application-url"
}
}
Was this helpful?