GNU/Linux >> Linux の 問題 >  >> Linux

特定のホストを Nagios ホストグループから除外する方法はありますか?

! を使用して特定のホストを追加します サービス定義のプレフィックス。以下のサービス チェックは、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
}

Linux
  1. Linuxでのコピーから特定のディレクトリを除外する方法

  2. 基本的なSystemdサービスファイルを作成しますか?

  3. 列ごとに「ユニーク」にする方法はありますか?

  1. ファイルのリストを検索から除外する

  2. virtualhost proxypass からエイリアスを除外する

  3. あるボリューム グループから別のボリューム グループに論理ボリュームを移動/コピーする簡単な方法はありますか? (LVM2)

  1. sudo ユーザーが特定のコマンドを実行できないようにする方法は?

  2. htopでテキストをコピーする方法はありますか?

  3. Linux 内から BIOS バージョンを取得する方法はありますか?