Notification Channels Overview
Notification channels are how you receive alerts when monitors detect problems. Set up multiple channels to make sure you never miss a critical alert.

What Are Notification Channels?
A notification channel is a destination for your alerts. When a monitor detects an issue, notifications are sent to all configured channels.
You can have multiple channels and assign different monitors to different channels.
Available Channel Types
| Channel | Description | Best For |
|---|---|---|
| Traditional email alerts | Everyone | |
| SMS | Text message alerts | Critical, time-sensitive alerts |
| Webhook | HTTP POST to a URL | Custom integrations |
| Slack | Messages to Slack channels | Team collaboration |
| Discord | Messages to Discord servers | Developer communities |
Setting Up Email Notifications
Email is the most common notification method:
- Your account email receives notifications by default
- Add additional email addresses for team members
- Choose which monitors send to which emails
Configuring Email
- Go to Settings or Notifications
- Find Email Channels
- Add email addresses
- Save your changes
Setting Up SMS Notifications
SMS provides immediate alerts for critical issues:
- Go to notification settings
- Add your phone number
- Verify with the confirmation code
- Assign monitors to receive SMS
Note: SMS availability depends on your plan and region.
Setting Up Webhooks
Webhooks send data to your own systems or third-party services:
- Go to notification settings
- Click Add Webhook
- Enter your webhook URL
- Save the channel
Webhook Payload
When triggered, webhooks send a JSON payload with:
{
"monitor_name": "Website",
"status": "down",
"timestamp": "2025-12-09T12:00:00Z",
"message": "Monitor check failed",
"url": "https://example.com"
}
Use this to build custom dashboards, Slack bots, or automation workflows.
Setting Up Slack
Connect directly to Slack for team alerts:
- Go to notification settings
- Click Add Slack
- Authorize the connection
- Select which channel to post to
- Save the integration
Alerts appear in your chosen Slack channel with all relevant details.
Setting Up Discord
Popular for development teams and communities:
- Create a webhook in your Discord server settings
- Copy the webhook URL
- Add it as a webhook channel in StatusPage.me
- Test the connection
Testing Notifications
Always test your channels before relying on them:
- Go to your notification channels list
- Click Send Test next to any channel
- Verify you receive the test notification
- If not, check your configuration
Assigning Channels to Monitors
Each monitor can use different notification channels:
- Edit a monitor
- Find the Notifications section
- Check the channels you want to use
- Save the monitor
This lets you:
- Send critical alerts via SMS
- Route team alerts to Slack
- Keep email for everything
Best Practices
| Do | Don’t |
|---|---|
| Use multiple channels for critical services | Rely on a single channel |
| Test regularly | Assume channels are working |
| Include SMS for 24/7 critical alerts | Use SMS for everything (alert fatigue) |
| Set up Slack for team visibility | Keep all alerts private |