Files
confdroid_apache/manifests/monitoring/target.pp

24 lines
841 B
ObjectPascal
Raw Normal View History

2026-02-03 00:41:35 +01:00
## confdroid_apache::monitoring::target.pp
# Module name: confdroid_apache
# Author: 12ww1160 (12ww1160@puppetsoft.com)
2018-04-20 10:06:12 +02:00
# @summary class manages exports for nagios monitoring
##############################################################################
2026-02-03 00:41:35 +01:00
class confdroid_apache::monitoring::target (
2018-04-20 10:06:12 +02:00
2026-02-03 00:41:35 +01:00
) inherits confdroid_apache::params {
2026-03-09 12:22:17 +01:00
if $ae_incl_target == true {
@@nagios_service { "check_http_${fqdn}":
check_command => 'check_http',
use => 'generic-service',
host_name => $fqdn,
notification_period => '24x7',
service_description => "${fqdn}_check_http",
target => $ae_target_service,
owner => 'nagios',
group => 'nagios',
mode => '0640',
contacts => 'ops',
2018-04-20 10:06:12 +02:00
}
}
}