Get started with Opsgenie as a user
Learn how to configure your profile, get notifications from Opsgenie and view on-call schedules.
Opsgenie has a webhook integration with MongoDB Cloud Manager. Use the integration to send MongoDB Cloud Manager incidents to Opsgenie API with detailed information. Opsgenie acts as a dispatcher for MongoDB Cloud Manager 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.
This document describes how to configure the integration and details of data that Opsgenie receives from MongoDB Cloud Manager.
When an alert is created on MongoDB Cloud Manager, an alert is created in Opsgenie automatically through the integration.
When an alert is closed on MongoDB Cloud Manager, the related alert is closed 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 MongoDB Cloud Manager and select Add.
Specify who is notified of MongoDB Cloud Manager alerts using the Responders field. Auto-complete suggestions are provided as you type.
Copy the API key by clicking on the copy button or selecting.
Click Save Integration.
In MongoDB Cloud Manager, click Settings from the navigation bar.
Select Group Settings from the side menu.
Scroll down to "Webhook Settings".
Paste API URL into Webhook URL field.
Click Save.
6. For alert configurations in MongoDB Cloud Manager, go to Alert Configuration
Create Alert payload:
JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"alertConfigId": "5770e05ae4b096e0e2c23ca0",
"created": "2016-06-28T13:26:23Z",
"eventTypeName": "MONITORING_AGENT_DOWN",
"groupId": "5770d0ede4b0ca29d1781ccd",
"id": "57727affe4b0a7dc53fb9429",
"links": [
{
"href": "https://cloud.mongodb.com/api/public/v1.0/groups/5770d0ede4b0ca29d1781ccd/alerts/57727affe4b0a7dc53fb9429",
"rel": "self"
}
],
"status": "OPEN",
"typeName": "AGENT",
"updated": "2016-06-28T13:26:23Z"
}
This payload is parsed by Opsgenie as:
JSON
1
2
3
4
5
6
7
8
[
"title": "[MongoDB Cloud] Alert for : MONITORING_AGENT_DOWN",
"description": "
Event Type : MONITORING_AGENT_DOWN
Status : OPEN
Created : 2016-06-28T13:26:23Z",
"links": "https://cloud.mongodb.com/api/public/v1.0/groups/5770d0ede4b0ca29d1781ccd/alerts/57727affe4b0a7dc53fb9429"
]
Was this helpful?