No performance data (graphs) found for NRDP passive checks

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

No performance data (graphs) found for NRDP passive checks

Post 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
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises

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

Post by scottwilkerson »

How are you sending them?
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

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

Post by dlukinski »

scottwilkerson wrote:How are you sending them?

I could show if we schedule a meeting (from Nagios CORE to Nagios XI)
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises

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

Post by scottwilkerson »

Are you sending via nagios command?

If it is from within Nagios, are you passing the $HOSTPERFDATA$ & $SERVICEPERFDATA$ to the command?
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

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

Post 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)
You do not have the required permissions to view the files attached to this post.
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises

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

Post 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$"
}
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
dlukinski
Posts: 1130
Joined: Tue Oct 06, 2015 9:42 am

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

Post 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!
User avatar
lmiltchev
Former Nagios Staff
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

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

Post by lmiltchev »

I am glad your issue has been resolved! I am closing this topic. Thank you!
Be sure to check out our Knowledgebase for helpful articles and solutions!