我在設置nagios依賴關係時遇到困難,因此我只在主機啓動(Pingable)時收到通知。設置Nagios依賴關係來監視Windows主機上的服務
我的主人CFG文件是如下:
# Configuration file /etc/nagios/adagios/hosts/dp-front.cfg
# Edited by PyNag on Wed Nov 11 16:38:15 2015
define host {
alias Ditmas Park Front Desk
use windows-server
host_name dp-front
address 192.168.200.47
max_check_attempts 2
check_command check-host-alive
check_period workhours
notification_period workhours
}
define service{
use generic-service
host_name dp-front
service_description Medical Records
check_command check_nt!PROCSTATE!-d SHOWALL -l Robocopy.exe
notification_interval 0
max_check_attempts 1
}
define servicedependency{
host_name localhost
service_description PING
dependent_host_name localhost
dependent_service_description PING
execution_failure_criteria c
notification_failure_criteria w,u,c
}
Nagios是正確監控的服務,我收到通知,所有的時間當服務下去。我只是不知道如何設置它的「servicedependency」部分。
我會非常感謝你一如既往的幫助。
它已經建立 'execution_failure_criteria U,C,P' 'notification_failure_criteria U,C,P' –