Platform Integrations
Integrate Sentry alerts with popular communication and incident response platforms to ensure your team receives security notifications where they work.
Slack Integration
Incoming Webhooks:
Create Slack App or use Incoming Webhooks
Get webhook URL from Slack
Add URL to Sentry webhook configuration
Transform Sentry payload to Slack format
Example Slack Message:
{
"text": "🚨 Security Alert",
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "New Breach Detected"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Email:* [email protected]\n*Service:* Dropbox\n*Severity:* HIGH"
}
},
{
"type": "actions",
"elements": [
{
"type": "button",
"text": {"type": "plain_text", "text": "View in Sentry"},
"url": "https://sentry.example.com/alerts/alert_xyz789"
}
]
}
]
}Discord Integration
Discord Webhooks:
Create webhook in Discord channel settings
Copy webhook URL
Add to Sentry
Customize message formatting
Example Discord Embed:
PagerDuty Integration
Events API:
Create PagerDuty integration
Get integration key
Send events to PagerDuty Events API
Map Sentry severity to PagerDuty severity
Critical Events Only: Configure webhook to only forward Critical severity to avoid alert fatigue.
Custom Systems
Build custom integrations for:
SIEM Platforms: Splunk, Elastic Security, QRadar
Ticketing Systems: Jira, ServiceNow, Linear
Internal Tools: Custom dashboards, reporting systems
Automation Platforms: Zapier, n8n, Make
Last updated