Files
confdroid_apache/manifests/monitoring/target.pp
2025-05-06 14:51:28 +02:00

28 lines
989 B
Puppet

## cd_apache::monitoring::target.pp
# Module name: cd_apache
# Author: Arne Teuke (arne_teuke@puppetsoft.com)
# @summary class manages exports for nagios monitoring
##############################################################################
class cd_apache::monitoring::target (
) inherits cd_apache::params {
case $ae_incl_target {
false: { notify { 'Nagios Service target for check_httpd has been disabled via parameters / ENC override': }
}
default: {
@@nagios_service { "check_http_${::hostname}":
check_command => 'check_http',
use => 'generic-service',
host_name => $::fqdn,
notification_period => '24x7',
service_description => "${::hostname}_check_http",
target => $ae_target_service,
owner => 'nagios',
group => 'nagios',
mode => '0640',
contacts => 'ops',
}
}
}
}