Hi Kausal,<br><br>I have found an issue ('obsessive_host_handler' is not defined anywhere!) in <br>the nagios mailing list <br><a href="http://www.mail-archive.com/nagios-users@lists.sourceforge.net/msg07094.html" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">

http://www.mail-archive.com/nagios-users@lists.sourceforge.net/msg07094.html</a>. <br>But there is no fix mentioned in the thread.<br><br>The exact fix which I have done is specified below:<br><br>Create the file obsessive_host_handler with the following content: 
<br>+++++++++++++++++++++++++++<br># Based on<br># OBSESSIVE_SVC_HANDLER<br># Written by Ethan Galstad (<a href="mailto:nagios@nagils.org" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">nagios@nagils.org
</a>)<br># Last Modified: 07-19-2001<br>#<br># This script is intended to run as the OCSP command
<br># on a distributed monitoring server.  The script calls<br># submit_check_result_via_nsca to send the service check<br># results to the central monitoring server.<br>#<br># Arguments:<br>#  $1 = host_name (Short name of host that the service is
<br>#       associated with)<br>#  $2 = state_string (A string representing the status of<br>#       the given service - "OK", "WARNING", "CRITICAL"<br>#       or "UNKNOWN")<br>#  $3 = plugin_output (A text string that should be used
<br>#       as the plugin output for the service checks)<br>#<br><br># Location of the submit_check_result_via_nsca script<br>SubmitCmd="/usr/local/nagios/libexec/eventhandlers/submit_check_result"<br><br># Convert the state string to the corresponding return code
<br>return_code=-1<br><br>case "$2" in<br>        UP)<br>                return_code=0<br>                ;;<br>        DOWN)<br>                return_code=1<br>                ;;<br>        UNREACHEBLE)<br>                return_code=2
<br>                ;;<br>esac<br><br># Send the service check results to the central monitoring server<br>$SubmitCmd "$1" $return_code "$3"<br>+++++++++++++++++++++++++++<br><br>You need to specify the exact location of SubmitCmd. Here it 
<br>is /usr/local/nagios/libexec/eventhandlers/submit_check_result. <br><br>Add the command in commands configuration file according to nagios.cfg. The <br>define part of command is specified below: <br>+++++++++++++++++++++++++++
<br>define command{<br>        command_name obsessive_host_handler<br>        command_line    /usr/local/nagios/libexec/obsessive_host_handler <br>$HOSTNAME$ $SERVICESTATEID$ '$SERVICEOUTPUT$'<br>}<br>+++++++++++++++++++++++++++
<br><br>Reload the nagios. This will fix the issue. Here the exact location of <br>obsessive_host_handler is /usr/local/nagios/libexec/obsessive_host_handler. <br>Modify it as per your requirement.<br><span class="sg"><br>
-- <br>Regards,<br>
Joseph Symon<br><a href="http://bobcares.com/" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">Bobcares.com</a>
</span>