web-dev-qa-db-ja.com

AND / OR Icinga / Nagiosのサービス依存関係

私はサービスの依存関係を使用して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
}

これらは機能しますが、入力のどちらかが機能している場合は、「バッテリー時間」のアラートを抑制します。入力の両方が機能している場合にのみ抑制するようにこれを調整するにはどうすればよいですか?

2
Tim Brigham

check_multi(またはcheck_cluster)を使用して両方の電圧チェックサービスをチェックするメタサービスをセットアップし、それをサービスの依存関係に使用できます。

1
Keith