Hello again,<br><br>I followed the documentation that Greg advised and also the additions that Kevin suggested and everything worked out just fine using the <br>check_nrpe plugin.<br><br>A snippet of some definitions are;<br>
<br><br><b>Service Definition;</b><br><br><span style="color: rgb(255, 0, 0);">define service{</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        use                             generic-service</span><br style="color: rgb(255, 0, 0);">
<br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        host_name                       eapp03</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        service_description             Users</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        is_volatile                     0</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        check_period                    24x7</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        max_check_attempts              6</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        normal_check_interval           3</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        retry_check_interval            1</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        contact_groups                  admins</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        notification_interval           120</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        notification_period             24x7</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        notification_options            w,u,c,r</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        check_command                   check_nrpe!check_users</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        }</span><br style="color: rgb(255, 0, 0);"><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">define service{</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        use                             generic-service</span><br style="color: rgb(255, 0, 0);">
<br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        host_name                       eapp03</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        service_description             Load</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        is_volatile                     0</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        check_period                    24x7</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        max_check_attempts              6</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        normal_check_interval           3</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        retry_check_interval            1</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        contact_groups                  admins</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        notification_interval           120</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        notification_period             24x7</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        notification_options            w,u,c,r</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        check_command                   check_nrpe!check_load</span><br style="color: rgb(255, 0, 0);">
<br><br><b>Command Definition;</b><br><br><span style="color: rgb(255, 0, 0);"># 'check_users' command definition</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">define command{</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        command_name    check_users</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        command_line    $USER1$/check_users -w $ARG1$ -c $ARG2$</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        }</span><br style="color: rgb(255, 0, 0);"><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);"># 'check_load' command definition</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">define command{</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        command_name    check_load</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        command_line    $USER1$/check_load -w $ARG1$ -c $ARG2$</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        }</span><br style="color: rgb(255, 0, 0);"><br><b>Host Definition;</b><br><br><span style="color: rgb(255, 0, 0);"># Application server host definition</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">define host{</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        host_name               eapp03</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        use                     generic-host</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        alias                   Server 3</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        address                 xx.xx.xx.xx</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        check_command           check-host-alive</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        check_period            24x7</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        check_interval          5</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        contact_groups          admins</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        retry_interval          1</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        max_check_attempts      10</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        notification_interval   120</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        notification_period     24x7</span><br style="color: rgb(255, 0, 0);">
<span style="color: rgb(255, 0, 0);">        notification_options    d,u,r</span><br style="color: rgb(255, 0, 0);"><span style="color: rgb(255, 0, 0);">        }</span><br><br><br>Thanks everyone for the help - much appreciated!<br>
<br><br>Regards,<br>Juki<br>