master
md 108 lines 2.98 KB
Rendered Raw
1 <!--startmeta
2 custom_edit_url: "https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/README.md"
3 meta_yaml: "https://github.com/netdata/netdata/edit/master/src/health/notifications/slack/metadata.yaml"
4 sidebar_label: "Slack"
5 learn_status: "Published"
6 learn_rel_path: "Alerts & Notifications/Notifications/Agent Dispatched Notifications"
7 keywords: ['Slack']
8 message: "DO NOT EDIT THIS FILE DIRECTLY, IT IS GENERATED BY THE NOTIFICATION'S metadata.yaml FILE"
9 endmeta-->
10
11 # Slack
12
13
14 <img src="https://netdata.cloud/img/slack.png" width="150"/>
15
16
17 Send notifications to a Slack workspace using Netdata's Agent alert notification feature, which supports dozens of endpoints, user roles, and more.
18
19
20 <img src="https://img.shields.io/badge/maintained%20by-Netdata-%2300ab44" />
21
22 ## Setup
23
24
25 ### Prerequisites
26
27 ####
28
29 - Slack app along with an incoming webhook, read Slack's guide on the topic [here](https://api.slack.com/messaging/webhooks).
30 - One or more channels to post the messages to
31 - Access to the terminal where Netdata Agent is running
32
33
34
35 ### Configuration
36
37 #### Options
38
39 The following options can be defined for this notification
40
41 <details open><summary>Config Options</summary>
42
43
44
45 | Option | Description | Default | Required |
46 |:-----|:------------|:--------|:---------:|
47 | SEND_SLACK | Set `SEND_SLACK` to YES | YES | yes |
48 | SLACK_WEBHOOK_URL | set `SLACK_WEBHOOK_URL` to your Slack app's webhook URL. | | yes |
49 | DEFAULT_RECIPIENT_SLACK | Set `DEFAULT_RECIPIENT_SLACK` to the Slack channel your Slack app is set to send messages to. The syntax for channels is `#channel` or `channel`. | | yes |
50
51
52 </details>
53
54
55
56 #### via File
57
58 The configuration file name for this integration is `health_alarm_notify.conf`.
59
60
61 You can edit the configuration file using the [`edit-config`](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#edit-configuration-files) script from the
62 Netdata [config directory](https://github.com/netdata/netdata/blob/master/docs/netdata-agent/configuration/README.md#locate-your-config-directory).
63
64 ```bash
65 cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
66 sudo ./edit-config health_alarm_notify.conf
67 ```
68
69 ##### Examples
70
71 ###### Basic Configuration
72
73
74
75 ```yaml
76 #------------------------------------------------------------------------------
77 # slack (slack.com) global notification options
78
79 SEND_SLACK="YES"
80 SLACK_WEBHOOK_URL="https://hooks.slack.com/services/XXXXXXXX/XXXXXXXX/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
81 DEFAULT_RECIPIENT_SLACK="#alarms"
82
83 ```
84
85
86 ## Troubleshooting
87
88 ### Test Notification
89
90 You can run the following command by hand, to test alerts configuration:
91
92 ```bash
93 # become user netdata
94 sudo su -s /bin/bash netdata
95
96 # enable debugging info on the console
97 export NETDATA_ALARM_NOTIFY_DEBUG=1
98
99 # send test alarms to sysadmin
100 /usr/libexec/netdata/plugins.d/alarm-notify.sh test
101
102 # send test alarms to any role
103 /usr/libexec/netdata/plugins.d/alarm-notify.sh test "ROLE"
104 ```
105
106 Note that this will test _all_ alert mechanisms for the selected role.
107
108