Alerting Providers
When creating an Alert in the TUI, you can choose from several providers. Each provider is configured directly in the SSH interface.
Discord
- Name: Give it a friendly name (e.g., "DevOps Channel").
- Webhook URL: Paste the URL from Discord Channel Integrations.
Format: https://discord.com/api/webhooks/12345/abcdef...
Slack
- Webhook URL: Paste the URL from Slack Incoming Webhooks.
Format: https://hooks.slack.com/services/T000/B000/xxx
Email (SMTP)
Standard email sending. Works with Gmail, Sendgrid, and any SMTP server.
- Host:
smtp.gmail.com - Port:
587 - User:
your.email@gmail.com - Password: Your App Password (not your login password).
- From:
alerts@yourdomain.com - To:
admin@yourdomain.com
Generic Webhook
Sends a raw HTTP POST with JSON data to any URL. Useful for connecting to PagerDuty, OpsGenie, or custom scripts.
Payload Formatjson
{
"title": "ALERT: My Website is DOWN",
"message": "Code: 502",
"status": "alert"
}