summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorChris Akritidis <43294513+cakrit@users.noreply.github.com>2023-03-29 09:09:10 -0700
committerGitHub <noreply@github.com>2023-03-29 09:09:10 -0700
commit1953b23c1f66871e1d6d5a1b1b1c13279a7f5b0c (patch)
treed58d7bbf397a195cee7bf37efd62f8043a10fa84 /docs
parent1ac2261c97e49678f6f7681e0b046cb29bace0e1 (diff)
Update enable-notifications.md (#14838)
Remove slack section
Diffstat (limited to 'docs')
-rw-r--r--docs/monitor/enable-notifications.md44
1 files changed, 0 insertions, 44 deletions
diff --git a/docs/monitor/enable-notifications.md b/docs/monitor/enable-notifications.md
index 8faed7f4d3..1174561cf5 100644
--- a/docs/monitor/enable-notifications.md
+++ b/docs/monitor/enable-notifications.md
@@ -88,48 +88,4 @@ notification platform.
- [**Telegram**](https://github.com/netdata/netdata/blob/master/health/notifications/telegram/README.md)
- [**Twilio**](https://github.com/netdata/netdata/blob/master/health/notifications/twilio/README.md)
-### Enable Slack notifications
-
-First, [Add an incoming webhook](https://slack.com/apps/A0F7XDUAZ-incoming-webhooks) in Slack for the channel where you
-want to see alert notifications from Netdata. Click the green **Add to Slack** button, choose the channel, and click the
-**Add Incoming WebHooks Integration** button.
-
-On the following page, you'll receive a **Webhook URL**. That's what you'll need to configure Netdata, so keep it handy.
-
-Navigate to your [Netdata config directory](https://github.com/netdata/netdata/blob/master/docs/configure/nodes.md#the-netdata-config-directory) and use `edit-config` to
-open the `health_alarm_notify.conf` file:
-
-```bash
-sudo ./edit-config health_alarm_notify.conf
-```
-
-Look for the `SLACK_WEBHOOK_URL=" "` line and add the incoming webhook URL you got from Slack:
-
-```conf
-SLACK_WEBHOOK_URL="https://hooks.slack.com/services/XXXXXXXXX/XXXXXXXXX/XXXXXXXXXXXX"
-```
-
-A few lines down, edit the `DEFAULT_RECIPIENT_SLACK` line to contain a single hash `#` character. This instructs Netdata
-to send a notification to the channel you configured with the incoming webhook.
-
-```conf
-DEFAULT_RECIPIENT_SLACK="#"
-```
-
-To test Slack notifications, switch to the Netdata user.
-
-```bash
-sudo su -s /bin/bash netdata
-```
-
-Next, run the `alarm-notify` script using the `test` option.
-
-```bash
-/usr/libexec/netdata/plugins.d/alarm-notify.sh test
-```
-
-You should receive three notifications in your Slack channel for each health status change: `WARNING`, `CRITICAL`, and
-`CLEAR`.
-
-See the [Agent Slack notifications](https://github.com/netdata/netdata/blob/master/health/notifications/slack/README.md) doc for more options and information.