]> arthur.barton.de Git - netdata.git/blob - conf.d/health_alarm_notify.conf
alarm-email.sh renamed to alarm-notify.sh
[netdata.git] / conf.d / health_alarm_notify.conf
1 # Configuration for alarms recipients
2
3 # netdata alarms have been categorized to allow different roles to receive
4 # alarms related to their work.
5
6 # this file defines the email addresses for each role. if a role is not
7 # defined, the email will be sent to root.
8
9 # you can set multiple addresses for each role, like this:
10 #
11 # recipients[sysadmin]="admin1@example.com, admin2@example.com"
12 #
13 # it is important to add the comma between email addresses.
14
15 # This configuration file is a BASH script itself. The 'recipients' variable is
16 # an associative array. So you can use other variables too, like this one:
17
18 default_recipient_for_all_roles="root"
19
20
21 # -----------------------------------------------------------------------------
22 # generic system alarms
23 # CPU, disks, entropy, etc
24
25 recipients[sysadmin]="${default_recipient_for_all_roles}"
26
27
28 # -----------------------------------------------------------------------------
29 # DNS related alarms
30
31 recipients[domainadmin]="${default_recipient_for_all_roles}"
32
33
34 # -----------------------------------------------------------------------------
35 # database servers alarms
36 # mysql, redis, memcached, etc
37
38 recipients[dba]="${default_recipient_for_all_roles}"
39
40
41 # -----------------------------------------------------------------------------
42 # web servers alarms
43 # apache, nginx, etc
44
45 recipients[webmaster]="${default_recipient_for_all_roles}"
46
47
48 # -----------------------------------------------------------------------------
49 # proxy servers alarms
50 # apache, nginx, etc
51
52 recipients[proxyadmin]="${default_recipient_for_all_roles}"
53