!
を使用して特定のホストを追加します サービス定義のプレフィックス。以下のサービス チェックは、agroup
のすべてのホストに適用されます。 ahost
以外 .
define service {
hostgroup_name agroup
host_name !ahost
service_description Shared NFS mount
check_command check_nrpe!check_shared_mount
use generic-service
}
ホストではまだ試していませんが、ホストグループでは !
を前に付けます 動作します。ビジーなサーバーで別の負荷チェックを実行するためにこれを使用します:
define host {
use physical-host
host_name busy-host.example.com
alias busy-host.example.com
address 10.43.16.1
hostgroups linux,centos,ldap,http,busy
}
define host {
use physical-host
host_name normal-host.example.com
alias narmal-host.example.com
address 10.43.1.1
hostgroups linux,centos,dns,proxy,ldap,hp,http,puppetmaster
}
define service {
use generic-service
hostgroup_name linux,!busy
service_description Load
check_command check_snmp_load
}
define service {
use generic-service
hostgroup_name busy
service_description Load
check_command check_snmp_load_busy
}