You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Every Opsgenie team has an on-call roster with their team members. As a team member, when you start your on-call week, how can you be sure that your notifications are setup correctly? This is essential as you don't want to miss any calls from a potential high priority alert.
Opsgenie's REST API allows both creating and deleting an alert.
Here is an example of how you can generate a test P1 alert:
curl -X POST https://api.opsgenie.com/v2/alerts \
-H "Content-Type: application/json" \
-H "Authorization: GenieKey $API_KEY" \
-d \
"{
\"message\": \"Notification test\",
\"alias\": \"notification-test-<random_id>\",
\"description\":\"Test notification\",
\"responders\":[
{\"name\":\"$TEAM_NAME\", \"type\":\"team\"}
],
\"visibleTo\":[
{\"name\":\"$TEAM_NAME\",\"type\":\"team\"}
],
\"priority\":\"P1\"
}"
You can place this in a Bamboo plan or any build tool that can schedule this script to run after your on-call roster starts. Eg. run every Monday at 9 AM.
When this build is run, the person on-call on that week would receive a phone call, which confirms the person's notifications are setup correctly.
This method can also be used to ensure your other types of notifications as Slack are working properly every week.
As a best practice, it would be a good idea to clean up this test alert after a few minutes in the same build. So this alert won't come up in any of your reports.
Here is how you can delete the test alert created earlier:
curl -X DELETE "https://api.opsgenie.com/v2/alerts/$id?identifierType=id" \
-H "Authorization: GenieKey $API_KEY"
Hope this brings confidence to the person coming into the roster schedule.
Lenin Raj
3 comments