Hey ,
I am trying to integrate my Monitor list alerts in GroundCover to trigger the alert to my Opsgenie whenever any of my alerts in monitor list goes in firing State the GroundCover should trigger alert to Opsgenie.Context:
Added the Opsgenie as Integration.
Integrated the Opsgenie workflow with the alerts in Monitor List Still unable to receive alerts on Opsgenie.
Hi Ravi,
Thanks for reaching out to Atlassian Community!
At the moment, Opsgenie does not offer a native integration with Groundcover. To connect the two, you'll need to use an API-based integration by leveraging the Opsgenie REST API — specifically the POST /v2/alerts
endpoint.
To get started, make sure you've created an API integration in Opsgenie (not an email or webhook one), and use the API key generated from that integration. This key will be used in the Authorization
header when sending alerts.
Your Groundcover alerting rule should be configured to send an HTTP POST
request to the following URL: https://api.opsgenie.com/v2/alerts
Include a JSON payload like this:
{
"message": "Your alert title here",
"description": "Detailed description from Groundcover",
"priority": "P3",
"source": "Groundcover",
"responders": [
{
"type": "team",
"name": "your-team-name"
}
]
}
Don’t forget to include the proper headers:
Content-Type: application/json
Authorization: GenieKey YOUR_API_KEY
Also, if alerts aren’t showing up, you can check the logs in Opsgenie (under Settings > Logs) to see if any errors occurred during alert creation.
Happy to help!
Best Regards,
Egor
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.