๐ Custom Webhook
The Custom Webhook channel lets you send alert data to any HTTP endpoint. This is perfect for integrating with services that Monitron doesn't natively support.
๐ง Setupโ
Add to Contactโ
| Setting | Description | Example |
|---|---|---|
| Channel | Custom Webhook | โ |
| URL | The endpoint to send data to | https://your-api.com/alerts |
| Method | HTTP method | POST |
๐จ Payload Formatโ
Monitron sends a JSON payload:
{
"event": "monitor.down",
"monitor": {
"name": "My Website",
"type": "http",
"address": "https://example.com",
"status": "down"
},
"incident": {
"title": "My Website is down",
"severity": "critical",
"started_at": "2026-03-24T10:30:00Z"
},
"check": {
"response_time_ms": null,
"status_code": null,
"error_message": "Connection timeout"
}
}
๐ก Use Casesโ
- Integrate with Zapier or Make (Integromat) for custom workflows
- Send data to a custom dashboard
- Trigger auto-remediation scripts
- Forward to any service with an API
- Write to a database or log aggregator