diff --git a/monitoring/icinga2/conf.d/dependencies.conf b/monitoring/icinga2/conf.d/dependencies.conf new file mode 100644 index 0000000..e6c6b5b --- /dev/null +++ b/monitoring/icinga2/conf.d/dependencies.conf @@ -0,0 +1,12 @@ +apply Dependency "disable-host-service-checks" to Service { + disable_checks = true + assign where true +} + +apply Dependency "host-depends-on-host" to Host { + parent_host_name = host.vars.parent + disable_checks = true + disable_notifications = true + + assign where host.vars.parent +}