Created
September 3, 2019 10:55
-
-
Save realtebo/3b6692c485fa003ed488842850420fcd to your computer and use it in GitHub Desktop.
create contacts in nagios
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Edit the following file on nagios controller | |
# | |
# add an entry like | |
define contact { | |
contact_name user_nick_name | |
use generic-contact | |
alias Realtebo | |
email [email protected] | |
} | |
# Then in one of your service definition, send notification changing the service notification as followed | |
# note: use 'alias', is case sensitive, separate entries using commas | |
define service { | |
..... | |
contacts nagiosadmin, Realtebo | |
..... | |
} | |
# Always test before apply changes ! | |
cd /usr/local/nagios | |
sudo bin/nagios -v etc/nagios.cfg | |
# Restart service | |
sudo systemctl restart nagios |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment