Recipe
Opsgenie Alert Routing
Pipe Meridian detections into Opsgenie for on-call escalation and incident management.
Prerequisites
- An Opsgenie account with admin access.
- A Meridian API key with
events:writescope. - Your Opsgenie API integration key.
Step 1 — Create an API Integration
In Opsgenie, navigate to Settings → Integrations → Add Integration. Select API and give it a name like Meridian Alerts. Copy the generated API key.
Step 2 — Configure Meridian
Set the webhook URL in your Meridian instance to point at the Opsgenie alert endpoint:
POST https://api.opsgenie.com/v2/alerts
Authorization: GenieKey <your-api-key>
Content-Type: application/json
{
"message": "Meridian detection fired",
"alias": "{{detection_id}}",
"description": "{{detection_summary}}",
"priority": "P1"
}Step 3 — Test the Pipeline
Trigger a test detection from the Meridian dashboard. Confirm the alert appears in Opsgenie under Alerts. Adjust routing rules and on-call schedules as needed.
Need help? Browse more recipes or reach out to support.