linux – 有没有办法从Nagios主机组中排除特定主机?

前端之家收集整理的这篇文章主要介绍了linux – 有没有办法从Nagios主机组中排除特定主机?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个Nagios服务器,其中包括许多主机组.
其中一个主机组包括一个服务器,我想排除检查一个特定的Nagios检查,但我希望它继续作为主机组的成员,以便检查主机组检查的所有其他检查.
是否有选择排除或类似的东西可以帮助我实现我的目标?
谢谢

解决方法

尚未尝试使用主机,但使用主机组,前缀为!作品.我使用它来在繁忙的服务器上运行不同的负载检查:
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,dns,proxy,hp,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
}
原文链接:https://www.f2er.com/linux/401644.html

猜你在找的Linux相关文章