Icinga / Nagios 中的 AND / OR 服务依赖关系

Icinga / Nagios 中的 AND / OR 服务依赖关系

我一直在使用服务依赖关系设置 Icinga 实例,如下所示:

define servicedependency{
    dependent_host_name                             ahost
    dependent_service_description                   Battery Time
    host_name                                       powerware1
    service_description                             UPS Input 1 Voltage
    notification_failure_criteria   o
}
define servicedependency{
    dependent_host_name                             ahost
    dependent_service_description                   Battery Time
    host_name                                       powerware1
    service_description                             UPS Input 2 Voltage
    notification_failure_criteria   o
}

这些方法有效,但如果任何一个的输入均有效。我该如何调整它,以便它仅在两个都输入是否正常工作?

答案1

您可以设置一个元服务,使用check_multi(或check_cluster)来检查两个电压检查服务,并将其用于服务依赖关系。

相关内容