- - PR -
nagiosの設定ファイルの記述方法
1
投稿者 | 投稿内容 |
---|---|
|
投稿日時: 2006-07-24 20:16
お世話になります。
以下条件で、監視設定を行いたいのですが --------------------------------------------------- [監視条件] 2分間間隔で死活監視(PING監視)を行い、 5回連続でNGだった場合に 10分毎(2分×5)に正常になるまで通知メール送る ※初回異常発見時はメールしない(10分後に通知メール送信) [問題点] @初回異常検知時にメールが通知されてしまう A一分毎にメール通知されてしまう --------------------------------------------------- 上記監視条件を設定する場合の 設定ファイルの記述方法について アドバイス頂けないでしょうか よろしくお願い致します。 ↓↓↓↓↓↓↓↓↓↓↓ 現在の設定 ↓↓↓↓↓↓↓↓↓↓↓ --------- host.cfg --------- # Generic host definition template define host{ name generic-host ; The name of this host template - referenced in other host definitions, used for template recursion/resolution notifications_enabled 1 ; Host notifications are enabled event_handler_enabled 1 ; Host event handler is enabled flap_detection_enabled 1 ; Flap detection is enabled process_perf_data 1 ; Process performance data retain_status_information 1 ; Retain status information across program restarts retain_nonstatus_information 1 ; Retain non-status information across program restarts register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL HOST, JUST A TEMPLATE! } # 'Production Server' host definition define host{ use generic-host ; Name of host template to use host_name 10.14.114.97 alias Production Server address 10.14.114.97 check_command check-host-alive max_check_attempts 5;最大リトライ回数 notification_interval 2;通知間隔 notification_period 24x7;通知時間帯 notification_options d,u,r;通知する状態の指定 } ------------- servece.cfg ------------- # Generic service definition template define service{ name generic-service ; The 'name' of this service template, referenced in other service definitions active_checks_enabled 1 ; Active service checks are enabled passive_checks_enabled 1 ; Passive service checks are enabled/accepted parallelize_check 1 ; Active service checks should be parallelized (disabling this can lead to major performance problems) obsess_over_service 1 ; We should obsess over this service (if necessary) check_freshness 0 ; Default is to NOT check service 'freshness' notifications_enabled 1 ; Service notifications are enabled event_handler_enabled 1 ; Service event handler is enabled flap_detection_enabled 1 ; Flap detection is enabled process_perf_data 1 ; Process performance data retain_status_information 1 ; Retain status information across program restarts retain_nonstatus_information 1 ; Retain non-status information across program restarts register 0 ; DONT REGISTER THIS DEFINITION - ITS NOT A REAL SERVICE, JUST A TEMPLATE! } # Service definition define service{ use generic-service ;テンプレートの設定を継承 host_name 10.14.114.97 ;ホスト名 service_description PING is_volatile 0 check_period 24x7 max_check_attempts 5 ;最大リトライ回数 normal_check_interval 2 ;通常時の監視間隔(分) retry_check_interval 2 ; 異常時の監視間隔(分) contact_groups kenki-admins ;通知するグループ、 notification_interval 5 ;アラート通知に関連する設定(通知間隔) notification_period 24x7 ;アラート通知に関連する設定(通知時間帯) notification_options c,r ;アラート通知に関連する設定(通知する状態) check_command check-host-alive ;実行コマンド } |
1