Nagios 4 : しきい値を設定する2020/01/15 |
しきい値の設定です。
デフォルトで有効になっている監視項目はしきい値も設定されていますが、変更する場合は以下のように設定します。 |
|
[1] | しきい値は、デフォルトの項目については、監視設定ファイルに定義してあります。 Nagios サーバーのローカルホストの監視設定ファイル中で、それぞれの監視項目は [define service] で括られている部分が該当し、 [check_command] で指定されたコマンドに [!] で続くパラメーターがしきい値になります。 例えば、ルートパーティションのディスク使用量の監視は以下のように設定されています。 |
[root@dlp ~]#
vi /etc/nagios/objects/localhost.cfg ..... ..... # Define a service to check the disk space of the root partition # on the local machine. Warning if < 20% free, critical if # < 10% free space on partition. # 上の説明にもある通り、空き容量が 20% を切ると Warning, 10% を切ると Critical # しきい値を変更する場合はこの値を変更する define service { use local-service ; Name of service template to use host_name localhost service_description Root Partition check_command check_local_disk!20%!10%!/ } ..... .....[root@dlp ~]# systemctl restart nagios |
[2] | プラグインを追加した場合等で、自身でコマンド定義からしきい値まで設定する場合は以下のような流れになります。 (下例は [check_ntp_time] プラグイン追加時) |
[root@dlp ~]#
dnf --enablerepo=epel -y install nagios-plugins-ntp # 追加したプラグインのオプション等の使用方法を調べる [root@dlp ~]# /usr/lib64/nagios/plugins/check_ntp_time -h ..... ..... -w, --warning=THRESHOLD Offset to result in warning status (seconds) -c, --critical=THRESHOLD Offset to result in critical status (seconds) ..... ..... # 最終行に追記 define command { command_name check_ntp_time command_line $USER1$/check_ntp_time -H $ARG1$ -w $ARG2$ -c $ARG3$ } # 最終行に追記 ( NTPサーバーとの時間が1秒差で Warning, 2秒差で Critical ) define service { use local-service host_name localhost service_description NTP_TIME check_command check_ntp_time!ntp1.jst.mfeed.ad.jp!1!2 notifications_enabled 1 } systemctl restart nagios |
[3] | しきい値を超えると以下のようなメールが設定したメールアドレスへ送信されます。 |
From nagios@dlp.srv.world Mon Jan 13 23:27:54 2020 Return-Path: <nagios@dlp.srv.world> X-Original-To: root@localhost Delivered-To: root@localhost Date: Mon, 13 Jan 2020 23:27:54 -0600 To: root@localhost Subject: ** PROBLEM Service Alert: localhost/NTP_TIME is CRITICAL ** User-Agent: Heirloom mailx 12.5 7/5/10 Content-Type: text/plain; charset=us-ascii From: nagios@dlp.srv.world Status: R ***** Nagios ***** Notification Type: PROBLEM Service: NTP_TIME Host: localhost Address: 127.0.0.1 State: CRITICAL Date/Time: Mon Jan 13 23:27:54 CST 2020 Additional Info: NTP CRITICAL: Offset 65.38857508 secs, stratum best:2 worst:2 |
Sponsored Link |