Fixed a missing file for nagios instance
This commit is contained in:
parent
6470f84c3b
commit
7dd46f0536
2 changed files with 18 additions and 0 deletions
|
@ -982,6 +982,12 @@ class nagios_monitor {
|
||||||
mode => '0600',
|
mode => '0600',
|
||||||
;
|
;
|
||||||
}
|
}
|
||||||
|
#definition for check_nrpe_1arg
|
||||||
|
file { '/etc/nagios-plugins/config/check_nrpe.cfg':
|
||||||
|
ensure => file,
|
||||||
|
mode => '0644',
|
||||||
|
content => template('eid/monitor/check_nrpe.cfg.erb'),
|
||||||
|
}
|
||||||
nagioscfg::slack::channel {'eln': } ->
|
nagioscfg::slack::channel {'eln': } ->
|
||||||
nagioscfg::contactgroup {'alerts': } ->
|
nagioscfg::contactgroup {'alerts': } ->
|
||||||
nagioscfg::contact {'slack-alerts':
|
nagioscfg::contact {'slack-alerts':
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
# this command runs a program $ARG1$ with arguments $ARG2$
|
||||||
|
# this file is managed with puppet.
|
||||||
|
define command {
|
||||||
|
command_name check_nrpe
|
||||||
|
command_line /usr/lib/nagios/plugins/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ -a $ARG2$
|
||||||
|
}
|
||||||
|
|
||||||
|
# this command runs a program $ARG1$ with no arguments
|
||||||
|
define command {
|
||||||
|
command_name check_nrpe_1arg
|
||||||
|
command_line /usr/lib/nagios/plugins/check_nrpe -H $HOSTADDRESS$ -c $ARG1$
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue