Platform
From monitor event to notification — automatically
Choose the event, the target and the action. Qualimonitor executes the workflow and records the outcome.
Monitor state change
The MTR monitor changed to down after the configured checks failed.
- trigger matched: monitor down
- webhook delivered: HTTP 200
- public incident created
illustrative result · webhook · e-mail · status-page incident
Send webhooks
POST a standard payload or a custom template to your own HTTP endpoint. Configure headers, timeout and retries, then inspect the response in the action log.
Send e-mail
Notify organization members or confirmed external contacts when a configured event occurs. Subject and message templates can include monitor and check fields.
Create public incidents
Open an incident on the status page when the monitor meets the configured failure rule. When auto-resolve is enabled, a recovery closes the incident and adds the resolution update.
Audit every execution
Each run records the trigger, success or failure and the relevant response. Transition gating avoids sending the same down or recovery notification repeatedly.
A webhook payload you can use today
Without a custom body, webhook actions send the event and the fields recorded by the check. Point the request at your incident tool, SIEM or your own integration:
POST https://hooks.yourteam.com/alerts
{
"event": "down",
"monitor_name": "API production",
"monitor_type": "http",
"status": "down",
"target": "https://api.example.com/health",
"checked_at": "2026-08-02T14:32:00Z",
"latency_ms": null,
"status_code": null,
"error_message": "Request timed out"
} Questions
FAQ
Which actions are available today?
Webhook, e-mail and create status-page incident. The product does not currently change DNS, restart services or run corrective playbooks.
How do automatic incidents avoid noise?
Monitor incident settings support quorum, consecutive-result hysteresis and a cooldown before a resolved incident can reopen. You choose those values per monitor.
Can I customize the webhook?
Yes. Configure method, headers, body template, timeout and retry count. If you omit a body, Qualimonitor sends its standard event payload.
Does this replace my RMM or CI pipeline?
No. Use the webhook to feed the systems that already run your operation. Qualimonitor detects the monitor event and delivers the configured notification or incident action.