Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NetData
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ansible
Roles
NetData
Commits
72eb4c46
Commit
72eb4c46
authored
8 years ago
by
jurgenhaas
Browse files
Options
Downloads
Patches
Plain Diff
Addd PushOver notifications for netdata
parent
6b6319eb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tasks/main.yml
+6
-2
6 additions, 2 deletions
tasks/main.yml
templates/health_alarm_notify.conf
+99
-0
99 additions, 0 deletions
templates/health_alarm_notify.conf
with
105 additions
and
2 deletions
tasks/main.yml
+
6
−
2
View file @
72eb4c46
...
...
@@ -77,11 +77,15 @@
-
name
:
"
Configure
Python
Plugin"
template
:
src='
python.d.conf
'
dest='/etc/netdata/
python.d.conf
'
src='
{{ item }}
'
dest='/etc/netdata/
{{ item }}
'
owner='root'
group='root'
mode=644
backup=yes
with_items
:
-
'
python.d.conf'
-
'
health_alarm_notify.conf'
notify
:
-
"
Re-start
NetData"
...
...
This diff is collapsed.
Click to expand it.
templates/health_alarm_notify.conf
0 → 100644
+
99
−
0
View file @
72eb4c46
# Configuration for alarms recipients
# netdata alarms have been categorized to allow different roles to receive
# alarms related to their work.
#
# This file defines the addresses for each role.
# This file is a BASH script itself.
###############################################################################
# external commands needed
# The full path to the sendmail command.
# If empty, the system $PATH will be searched for it.
sendmail
=
""
# The full path of the curl command.
# If empty, the system $PATH will be searched for it.
curl
=
""
###############################################################################
# sending emails
# note: multiple recipients can be given like this:
# "admin1@example.com, admin2@example.com, ..."
# note it needs a comma!
# enable/disable sending emails
SEND_EMAIL
=
"YES"
# if a role recipient is not configured, an email will be send to
DEFAULT_RECIPIENT_EMAIL
=
"root"
###############################################################################
# sending pushover notifications (pushover.net)
# note: multiple recipients can be given like this:
# "USERTOKEN1 USERTOKEN2 USERTOKEN3 ..."
# enable/disable sending pushover notifications
SEND_PUSHOVER
=
"YES"
# Login to pushover.com 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
=
"{{ netdata_pushover_app_token|default('') }}"
# if a role recipient is not configured, a notification will be send to
# this pushover user token
DEFAULT_RECIPIENT_PUSHOVER
=
"{{ netdata_pushover_user_token|default('') }}"
###############################################################################
# RECIPIENTS PER ROLE
# -----------------------------------------------------------------------------
# generic system alarms
# CPU, disks, entropy, etc
role_recipients_email
[
sysadmin
]=
"${DEFAULT_RECIPIENT_EMAIL}"
role_recipients_pushover
[
sysadmin
]=
"${DEFAULT_RECIPIENT_PUSHOVER}"
# -----------------------------------------------------------------------------
# DNS related alarms
role_recipients_email
[
domainadmin
]=
"${DEFAULT_RECIPIENT_EMAIL}"
role_recipients_pushover
[
domainadmin
]=
"${DEFAULT_RECIPIENT_PUSHOVER}"
# -----------------------------------------------------------------------------
# database servers alarms
# mysql, redis, memcached, etc
role_recipients_email
[
dba
]=
"${DEFAULT_RECIPIENT_EMAIL}"
role_recipients_pushover
[
dba
]=
"${DEFAULT_RECIPIENT_PUSHOVER}"
# -----------------------------------------------------------------------------
# web servers alarms
# apache, nginx, etc
role_recipients_email
[
webmaster
]=
"${DEFAULT_RECIPIENT_EMAIL}"
role_recipients_pushover
[
webmaster
]=
"${DEFAULT_RECIPIENT_PUSHOVER}"
# -----------------------------------------------------------------------------
# proxy servers alarms
# apache, nginx, etc
role_recipients_email
[
proxyadmin
]=
"${DEFAULT_RECIPIENT_EMAIL}"
role_recipients_pushover
[
proxyadmin
]=
"${DEFAULT_RECIPIENT_PUSHOVER}"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment