Estimated time: 5 minutes. You will need a Clarion workspace and the ability to configure outbound webhooks in the source service.
Prerequisites
- A Clarion workspace
- A service that can send HTTP
POSTrequests with a JSON body (CI systems, bespoke scripts, SaaS tools with webhook outputs, Slack-style senders, etc.)
Step 1 — Create a Generic Webhook monitor
- In Clarion, go to Settings > Integrations
- Find Webhook and click Add Monitor
- Give the monitor a name — it is prefixed onto alert titles, so different monitors are easy to tell apart
- Pick an authentication method (see the next section)
- Pick a default severity for issues opened by the monitor
- Click Create
Step 2 — Choose an authentication method
The authentication method is fixed at creation. To switch, create a new monitor.
Signature format
Some senders cannot put their signature in our header. With HMAC auth selected, the Signature format dropdown adds that sender’s header to what the monitor accepts:
Custom covers senders that sign the raw request body. A sender that signs a timestamp together with the body — Stripe and Slack do — will not verify against any of these; tell us and we will add it as a named format.
Unlike the authentication method, this can be changed at any time — it does not affect your secret.
Step 3 — Send events from your service
Point the source service at the webhook URL Clarion gave you. UsePOST with a JSON object body, up to 100 KB.
Minimal example
What goes in the payload
Any valid JSON object is accepted. Clarion looks at the payload’stype, event, eventType, or event_type field (in that order) to derive an event type — used for matching filters and included in the issue title. If none of those fields is present, the event is treated as generic.
Fields used by the default alert template:
All other fields are attached to the issue for reference — no field is dropped.
Optional headers
The default “All webhook events” filter
When you create the monitor, Clarion adds an All webhook events filter that opens an issue for every incoming event with the default severity you chose. From the monitor’s Configure page you can:- Change the default severity — it applies to the default filter immediately
- Disable the default filter if you only want issues for specific events
- Add more filters that match by event type, payload fields, or conditions (e.g. only alert when
severity = critical)
message, severity, source) alongside the event type.
Using as a Slack replacement
Many services offer a “Slack incoming webhook URL” field for sending notifications. Because the Generic Webhook accepts arbitrary JSON, you can drop the Clarion webhook URL into those fields instead — your notifications become Clarion issues that get triaged by AI agents. To set this up:- Create a Generic Webhook monitor with No authentication (most Slack-style senders don’t sign requests) or Bearer token if the source service lets you add an
Authorizationheader - Copy the webhook URL from the monitor
- In the source service, paste the Clarion webhook URL wherever it asks for a Slack webhook URL
- Send a test notification — it will appear as an issue in Clarion
What happens next
Once configured, Clarion will automatically:- Accept JSON events at the monitor’s webhook URL
- Apply the default All webhook events filter (and any custom filters you add) to open issues
- Triage incoming issues using AI agents and surface actionable insights