Hello Nagios support
Would you happen to have Nutanix plugins command and service samples?
Specifically for these two plugins (I should run from Nagios XI server, right?)
https://exchange.nagios.org/directory/P ... pl/details
Thank you
Nutanix plugins command and service samples
Re: Nutanix plugins command and service samples
It looks like they both can be run on the XI server. I don't have a system to test with, but think this is a valid example(values probably need tweaking) :
"check_ssh_nutanix_cluster.pl --help" has this example:
Code: Select all
./check_nutanix.pl -H 1.2.3.4 -C public -t Containers -s citIOPerSecond -w citIOPerSecond=100 -c citIOPerSecond=200Code: Select all
./check_ssh_nutanix_cluster.pl -H cluster -u admin -p toto -C status -r snmpd -c 2As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
Re: Nutanix plugins command and service samples
Thank you,cdienger wrote:It looks like they both can be run on the XI server. I don't have a system to test with, but think this is a valid example(values probably need tweaking) :
"check_ssh_nutanix_cluster.pl --help" has this example:Code: Select all
./check_nutanix.pl -H 1.2.3.4 -C public -t Containers -s citIOPerSecond -w citIOPerSecond=100 -c citIOPerSecond=200
Code: Select all
./check_ssh_nutanix_cluster.pl -H cluster -u admin -p toto -C status -r snmpd -c 2
How the command would look like?
$USER1$/check_nutanix.pl -H $HOSTADDRESS$ $ARG1$ $ARG2$ $ARG3$ $ARG4$ $ARG5$ $ARG6$ $ARG7$ $ARG8$ ?
Re: Nutanix plugins command and service samples
You could get away with just:
Where $ARG1$ would contain all the options besides the host address:
Code: Select all
$USER1$/check_nutanix.pl -H $HOSTADDRESS$ $ARG1$Code: Select all
-C public -t Containers -s citIOPerSecond -w citIOPerSecond=100 -c citIOPerSecond=200As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.