Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check_vmware_status
1.0
2016-05-05
- Nagios 3.x
- Nagios 4.x
- Nagios XI
GPL
7995
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
Full details are at the download site, including help output.
Reviews (1)
bynatxo, May 9, 2016
hi,
please correct your info. I just wrote a very simple perl script that checks the power status of vms and the results are quite telling.
$ time ./check_vmware_status -H 192.168.0.115 -n centos1
OK: centos1 is powered on.
real 0m1.268s
$ time perl simpleperlscript --config ~/.visdk/visdkrc_esx_home --vmname centos1
centos1 is poweredOn
real 0m0.384s
Which is not at all surprising because the perl sdk is really fast. This is the code:
https://gist.github.com/anonymous/1c71ce972012b16c24a14bdc7b06eee8
This vmware api will always be faster than ssh commands. Plus you do not need to mess with ssh keys or open firewall ports. Installing the vmware perl sdk is a matter of copying two files in fact (first download the sdk from the vmware site (https://www.vmware.com/support/pubs/sdk_pubs.html), untar and copy https://www.vmware.com/support/pubs/sdk_pubs.html to /usr/local/lib/perl/{perl_version}
This step only happens on the nagios host and your workstation where you write the scripts, so much easier.
please correct your info. I just wrote a very simple perl script that checks the power status of vms and the results are quite telling.
$ time ./check_vmware_status -H 192.168.0.115 -n centos1
OK: centos1 is powered on.
real 0m1.268s
$ time perl simpleperlscript --config ~/.visdk/visdkrc_esx_home --vmname centos1
centos1 is poweredOn
real 0m0.384s
Which is not at all surprising because the perl sdk is really fast. This is the code:
https://gist.github.com/anonymous/1c71ce972012b16c24a14bdc7b06eee8
This vmware api will always be faster than ssh commands. Plus you do not need to mess with ssh keys or open firewall ports. Installing the vmware perl sdk is a matter of copying two files in fact (first download the sdk from the vmware site (https://www.vmware.com/support/pubs/sdk_pubs.html), untar and copy https://www.vmware.com/support/pubs/sdk_pubs.html to /usr/local/lib/perl/{perl_version}
This step only happens on the nagios host and your workstation where you write the scripts, so much easier.
Owner's reply
Thank you for the comparison. I will edit my information.
However, I do think that there is a place for this check, especially since it's so brain dead simple and does not rely on Perl, which can be cumbersome to set up and maintain, and also potentially difficult to install on embedded systems. This will work with anything that has an SSH client.
Feel free to not use it if you have something that works better for you.