Page 1 of 1

No performance data (graphs) found for NRDP passive checks

Posted: Wed Jun 27, 2018 3:16 pm
by dlukinski
Hello Nagios Support

We are no getting any performance data for the passive NRDP-based checks (or the host checks)

How to troubleshoot this issue?

Thank you

Re: No performance data (graphs) found for NRDP passive chec

Posted: Wed Jun 27, 2018 3:18 pm
by scottwilkerson
How are you sending them?

Re: No performance data (graphs) found for NRDP passive chec

Posted: Thu Jun 28, 2018 3:27 pm
by dlukinski
scottwilkerson wrote:How are you sending them?

I could show if we schedule a meeting (from Nagios CORE to Nagios XI)

Re: No performance data (graphs) found for NRDP passive chec

Posted: Thu Jun 28, 2018 4:53 pm
by scottwilkerson
Are you sending via nagios command?

If it is from within Nagios, are you passing the $HOSTPERFDATA$ & $SERVICEPERFDATA$ to the command?

Re: No performance data (graphs) found for NRDP passive chec

Posted: Wed Jul 04, 2018 7:18 am
by dlukinski
scottwilkerson wrote:Are you sending via nagios command?

If it is from within Nagios, are you passing the $HOSTPERFDATA$ & $SERVICEPERFDATA$ to the command?
Please take a look at CORE config files attached
- citrix.cfg is the example of the monitoring done VS the portals (other monitoring would be similar to it)

Re: No performance data (graphs) found for NRDP passive chec

Posted: Thu Jul 05, 2018 9:16 am
by scottwilkerson
change these commands

Code: Select all

define command{
command_name send_nrdp_host
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --state=$HOSTSTATEID$ --output="$HOSTOUTPUT$"
}

define command{
command_name send_nrdp_service
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --service="$SERVICEDESC$" --state=$SERVICESTATEID$ --output="$SERVICEOUTPUT$"
}
to this

Code: Select all

define command{
command_name send_nrdp_host
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --state=$HOSTSTATEID$ --output="$HOSTOUTPUT$|$HOSTPERFDATA$"
}

define command{
command_name send_nrdp_service
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --service="$SERVICEDESC$" --state=$SERVICESTATEID$ --output="$SERVICEOUTPUT$|$SERVICEPERFDATA$"
}

Re: No performance data (graphs) found for NRDP passive chec

Posted: Mon Jul 09, 2018 1:08 pm
by dlukinski
scottwilkerson wrote:change these commands

Code: Select all

define command{
command_name send_nrdp_host
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --state=$HOSTSTATEID$ --output="$HOSTOUTPUT$"
}

define command{
command_name send_nrdp_service
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --service="$SERVICEDESC$" --state=$SERVICESTATEID$ --output="$SERVICEOUTPUT$"
}
to this

Code: Select all

define command{
command_name send_nrdp_host
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --state=$HOSTSTATEID$ --output="$HOSTOUTPUT$|$HOSTPERFDATA$"
}

define command{
command_name send_nrdp_service
command_line $USER1$/send_nrdp.php --url=http://10.96.30.40/nrdp/ --token=nagiosxi40 --host="$HOSTNAME$" --service="$SERVICEDESC$" --state=$SERVICESTATEID$ --output="$SERVICEOUTPUT$|$SERVICEPERFDATA$"
}
This fixed the issue
Thank you so much!

Re: No performance data (graphs) found for NRDP passive chec

Posted: Mon Jul 09, 2018 4:41 pm
by lmiltchev
I am glad your issue has been resolved! I am closing this topic. Thank you!