Skip to main content
Sentry webhooks let agents respond to error alerts, metric alerts, and issue events.

Filter Fields (all optional)

FieldTypeDescription
resourcesstring[]Resource types: event_alert, metric_alert, issue, error, comment

Setup

  1. In Sentry, go to Settings > Developer Settings > New Internal Integration
  2. Set the webhook URL to your gateway (e.g. https://your-server:8080/webhooks/sentry)
  3. Copy the client secret to ~/.action-llama/credentials/sentry_client_secret/<instance>/secret
  4. Select the resource types you want to receive

Example Configuration

# In project config.toml
[webhooks.my-sentry]
type = "sentry"
credential = "SentryProd"
# In agents/<name>/config.toml
[[webhooks]]
source = "my-sentry"
resources = ["event_alert", "issue"]