# Configuration for alarm notifications # # this configuration is used by: alarm-notify.sh # changes take effect immendiately (the next alarm will use them). # # alarm-notify.sh can send: # - e-mails, # - push notifications to your mobile phone, # - messages to your slack team # - messages to your telegram chat / group chat # # the recipient given in netdata alarms defines a role, so that different # people can be notified for each role. # # This file is a BASH script itself. ############################################################################### # proxy configuration # if you need to send curl based notifications (pushover, slack) via a proxy # set these: #export http_proxy="http://10.0.0.1:3128/" #export https_proxy="http://10.0.0.1:3128/" ############################################################################### # external commands needed # The full path to the sendmail command. # If empty, the system $PATH will be searched for it. # If not found, email notifications will be disabled. sendmail="" # The full path of the curl command. # If empty, the system $PATH will be searched for it. # If not found, pushover, telegram and slack notifications will be disabled. curl="" ############################################################################### # RECIPIENT ATTRIBUTES # When you define recipients (all types): # # - emails addresses # - pushover user tokens # - telegram chat ids # - slack channels # # You can append |critical to limit the notifications to be sent. # # In these examples, the first recipient receives all the alarms # while the second one receives only the critical ones: # email : "user1@example.com user2@example.com|critical" # pushover: "2987343...9437837 8756278...2362736|critical" # telegram: "111827421 112746832|critical" # slack : "alarms disasters|critical" # # If a recipient is set to empty string, the default recipient of the given # notification method (email, pushover, telegram, slack) will be used. # To disable a notification, use the recipient called: disabled # This works for all notification methods (including the default recipients). ############################################################################### # sending emails # note: multiple recipients can be given like this: # "admin1@example.com admin2@example.com ..." # enable/disable sending emails SEND_EMAIL="YES" # if a role recipient is not configured, an email will be send to: DEFAULT_RECIPIENT_EMAIL="root" # to recieve only critical alarms, set it to "root|critical" ############################################################################### # sending pushover notifications (pushover.net) # note: multiple recipients can be given like this: # "USERTOKEN1 USERTOKEN2 ..." # enable/disable sending pushover notifications SEND_PUSHOVER="YES" # Login to pushover.net to get your pushover app token # You need only one for all your netdata servers. # Without it, netdata cannot send pushover notifications. PUSHOVER_APP_TOKEN="" # if a role's recipients are not configured, a notification will be send to # this pushover user token: DEFAULT_RECIPIENT_PUSHOVER="" ############################################################################### # sending telegram messages (telegram.org) # To get your chat ID send the command /my_id to telegram bot @get_id. # Users also need to open a query with the bot. # note: multiple recipients can be given like this: # "CHAT_ID_1 CHAT_ID_1 ..." # enable/disable sending telegram messages SEND_TELEGRAM="YES" # Contact the bot @BotFather to create a new bot and to receive a bot token. # Without it, netdata cannot send telegram messages. TELEGRAM_BOT_TOKEN="" # If a role's recipients are not configured, a message will be send to this chat id: DEFAULT_RECIPIENT_TELEGRAM="" ############################################################################### # sending slack notifications # note: multiple recipients can be given like this: # "CHANNEL1 CHANNEL2 ..." # enable/disable sending pushover notifications SEND_SLACK="YES" # Login to slack.com and create an incoming webhook. # You need only one for all your netdata servers. # Without it, netdata cannot send slack notifications. # Get yours from: https://api.slack.com/incoming-webhooks SLACK_WEBHOOK_URL="" # if a role's recipients are not configured, a notification will be send to # this slack channel: DEFAULT_RECIPIENT_SLACK="" ############################################################################### # RECIPIENTS PER ROLE # ----------------------------------------------------------------------------- # generic system alarms # CPU, disks, entropy, etc role_recipients_email[sysadmin]="${DEFAULT_RECIPIENT_EMAIL}" role_recipients_pushover[sysadmin]="${DEFAULT_RECIPIENT_PUSHOVER}" role_recipients_telegram[sysadmin]="${DEFAULT_RECIPIENT_TELEGRAM}" role_recipients_slack[sysadmin]="${DEFAULT_RECIPIENT_SLACK}" # ----------------------------------------------------------------------------- # DNS related alarms role_recipients_email[domainadmin]="${DEFAULT_RECIPIENT_EMAIL}" role_recipients_pushover[domainadmin]="${DEFAULT_RECIPIENT_PUSHOVER}" role_recipients_telegram[domainadmin]="${DEFAULT_RECIPIENT_TELEGRAM}" role_recipients_slack[domainadmin]="${DEFAULT_RECIPIENT_SLACK}" # ----------------------------------------------------------------------------- # database servers alarms # mysql, redis, memcached, etc role_recipients_email[dba]="${DEFAULT_RECIPIENT_EMAIL}" role_recipients_pushover[dba]="${DEFAULT_RECIPIENT_PUSHOVER}" role_recipients_telegram[dba]="${DEFAULT_RECIPIENT_TELEGRAM}" role_recipients_slack[dba]="${DEFAULT_RECIPIENT_SLACK}" # ----------------------------------------------------------------------------- # web servers alarms # apache, nginx, etc role_recipients_email[webmaster]="${DEFAULT_RECIPIENT_EMAIL}" role_recipients_pushover[webmaster]="${DEFAULT_RECIPIENT_PUSHOVER}" role_recipients_telegram[webmaster]="${DEFAULT_RECIPIENT_TELEGRAM}" role_recipients_slack[webmaster]="${DEFAULT_RECIPIENT_SLACK}" # ----------------------------------------------------------------------------- # proxy servers alarms # apache, nginx, etc role_recipients_email[proxyadmin]="${DEFAULT_RECIPIENT_EMAIL}" role_recipients_pushover[proxyadmin]="${DEFAULT_RECIPIENT_PUSHOVER}" role_recipients_telegram[proxyadmin]="${DEFAULT_RECIPIENT_TELEGRAM}" role_recipients_slack[proxyadmin]="${DEFAULT_RECIPIENT_SLACK}"