Get started with Opsgenie as a user
Learn how to configure your profile, get notifications from Opsgenie and view on-call schedules.
When resources change state they automatically send Amazon CloudWatch events into an event stream. Create rules that match selected events in the stream and route them to targets to take action. Use rules to also take action on a pre-determined schedule.
Use Opsgenie’s Amazon CloudWatch Events Integration to forward Amazon CloudWatch Events notifications to Opsgenie. Opsgenie determines the right people to notify based on on-call schedules– notifies via email, text messages (SMS), phone calls and iOS & Android push notifications, and escalates alerts until the alert is acknowledged or closed.
When a state changes in your AWS resources, an alert is created in Opsgenie automatically through the integration.
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 Amazon CloudWatch Events and select Add.
Specify who is notified of Amazon CloudWatch Events alerts using the Responders field. Auto-complete suggestions are provided as you type.
Copy the API Key.
Select Save Integration.
Go to the SNS dashboard. From the dashboard click Create Topic.
2. Fill in the required fields and click Create topic.
3. From Topic details page, click Create subscription.
4. Choose HTTPS for the "Protocol" field and paste the URL from the Opsgenie Amazon CloudWatch Events integration page to the Endpoint field. Then click Create subscription.
Upon successfully configuring SNS subscription to Opsgenie, a confirmation alert is created in Opsgenie.
5. Go to the CloudWatch dashboard. From the left side menu click on Rules under Events.
6. On the opening page click Create rule.
7. Choose the Event Source to get notifications from. Then add the SNS topic previously created as the target. Then click Configure details.
8. Populate the "Name" field and click Create rule.
JSON
1
2
3
4
5
6
7
8
9
10
11
{
"Type": "Notification",
"MessageId": "96d4c7c2-999e-57ab-aade-95f2f518987f",
"TopicArn": "arn:aws:sns:us-west-2:450xxxxxxx:test",
"Message": "{\"version\":\"0\",\"id\":\"3ee38987-e0ce-29f1-91a1-32704265286f\",\"detail-type\":\"EC2 Instance State-change Notification\",\"source\":\"aws.ec2\",\"account\":\"4500xxxxxx\",\"time\":\"2017-09-11T10:49:41Z\",\"region\":\"us-west-2\",\"resources\":[\"arn:aws:ec2:us-west-2:4500xxxxxxx:instance/i-04d6ebefdb7xxxx\"],\"detail\":{\"instance-id\":\"i-04xxxxxx\",\"state\":\"terminated\"}}",
"Timestamp": "2017-09-11T10:49:42.630Z",
"SignatureVersion": "1",
"Signature": "Iv8exxxx/DIfFd0eZ4eyo4vjrb/wEEoNji9S3xGQtpo1E9gXyMM8spmrULq20o25+OKXwZd5tRue7D69olvdcUdqRAN/bBfaHHq6tKVxnVnidgNq1VknAMeQRgd8qwVW1gARXTdO2z9AeDrOCH/ozEgNK3vwoFsDDxwKFxlFa9aioxxOu0uGlyuUpIb2rOaOwSo0aloE14XY9tgWrGlAxp+YwyHJbwXj36oAAU0GZOZV5C4TMhnRIdBnI9Yxxxxxxxx/tj6+gRnP4KeldOFHpaBGdw3/hOMdq9vA8yH934sA==",
"SigningCertURL": "https://sns.us-west-2.amazonaws.com/SimpleNotificationService-433026a4050d2xxxxxxxxxx.pem",
"UnsubscribeURL": "https://sns.us-west-2.amazonaws.com/?Action=Unsubscribe&SubscriptionArn=arn:aws:sns:us-west-2:4500xxxxxxx:test:5c91fe30-xxxxx-4627-a7f7-xxxxxxx"
}
This payload is parsed by Opsgenie as:
JSON
1
2
3
4
5
6
7
8
9
{
"id":"5c1f7731-23e0-0e90-124f-38ddb2811b49",
"detail-type":"EC2 Instance State-change Notification",
"source":"aws.ec2",
"account":"4500xxxxxxx",
"time":"2017-09-11T10:03:33Z",
"region":"us-west-2",
"detail":{"instance-id":"i-04d6ebxxxxxxxxx","state":"stopping"}}"
}
Was this helpful?