Pular para o conteúdo principal

🌐 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.


🔧 Configuracao

Adicionar ao Contato

ConfiguracaoDescricaoExemplo
ChannelCustom Webhook
URLThe endpoint to send data tohttps://your-api.com/alerts
MethodHTTP methodPOST

📨 Formato do Payload

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"
}
}

💡 Casos de Uso

  • 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