I have service def which looks like $USER1$/./check_aruba_khipu.pl -C public -H $HOSTADDRESS$ -c ap_clients -x $HOSTNAME$ , it seems its no longer passing the $HOSTNAME$ variable to the check command can someone check this ..its wreaking havoc on our environment as all our wireless controller monitoring has gone off...
XI 2012 CCM Variables not being passed
XI 2012 CCM Variables not being passed
Hi Guys ,
I have service def which looks like $USER1$/./check_aruba_khipu.pl -C public -H $HOSTADDRESS$ -c ap_clients -x $HOSTNAME$ , it seems its no longer passing the $HOSTNAME$ variable to the check command can someone check this ..its wreaking havoc on our environment as all our wireless controller monitoring has gone off...
I have service def which looks like $USER1$/./check_aruba_khipu.pl -C public -H $HOSTADDRESS$ -c ap_clients -x $HOSTNAME$ , it seems its no longer passing the $HOSTNAME$ variable to the check command can someone check this ..its wreaking havoc on our environment as all our wireless controller monitoring has gone off...
Re: XI 2012 CCM Variables not being passed
OK BUG CONFIRMED, if $HOSTNAME$ has space in it then it goes pop....can you put this in for a fix...many thanks Arnab
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: XI 2012 CCM Variables not being passed
Arnab.roy,
Can you change the command for this to wrap $HOSTNAME$ with single quotes
i.e.
Can you change the command for this to wrap $HOSTNAME$ with single quotes
i.e.
Code: Select all
$USER1$/check_aruba_khipu.pl -C public -H $HOSTADDRESS$ -c ap_clients -x '$HOSTNAME$'Re: XI 2012 CCM Variables not being passed
yup that did the trick ..thanks scott