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
No performance data (graphs) found for NRDP passive checks
-
- Posts: 1130
- Joined: Tue Oct 06, 2015 9:42 am
-
- 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
How are you sending them?
-
- Posts: 1130
- Joined: Tue Oct 06, 2015 9:42 am
Re: No performance data (graphs) found for NRDP passive chec
scottwilkerson wrote:How are you sending them?
I could show if we schedule a meeting (from Nagios CORE to Nagios XI)
-
- 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
Are you sending via nagios command?
If it is from within Nagios, are you passing the $HOSTPERFDATA$ & $SERVICEPERFDATA$ to the command?
If it is from within Nagios, are you passing the $HOSTPERFDATA$ & $SERVICEPERFDATA$ to the command?
-
- Posts: 1130
- Joined: Tue Oct 06, 2015 9:42 am
Re: No performance data (graphs) found for NRDP passive chec
Please take a look at CORE config files attachedscottwilkerson wrote:Are you sending via nagios command?
If it is from within Nagios, are you passing the $HOSTPERFDATA$ & $SERVICEPERFDATA$ to the command?
- 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.
-
- 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
change these commands
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$"
}
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$"
}
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$"
}
-
- Posts: 1130
- Joined: Tue Oct 06, 2015 9:42 am
Re: No performance data (graphs) found for NRDP passive chec
This fixed the issuescottwilkerson wrote:change these commandsto thisCode: 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$" }
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$" }
Thank you so much!
-
- Former Nagios Staff
- Posts: 13589
- Joined: Mon May 23, 2011 12:15 pm
Re: No performance data (graphs) found for NRDP passive chec
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!