Adding check_esxi_hardware

This commit is contained in:
Jan Wagner 2020-10-28 09:47:50 +01:00
parent 634170ac9b
commit 4dcc659638
6 changed files with 1078 additions and 0 deletions

View file

@ -0,0 +1,14 @@
PLUGIN := check_esxi_hardware
CLEANFILES := check_esxi_hardware
DOCFILES := README.md
include ../common.mk
check_esxi_hardware:
cp $@.py $@
chmod 755 $@
install::
install -d $(DESTDIR)$(PLUGINDIR)
ln -s $(PLUGINDIR)/$(PLUGIN) $(DESTDIR)$(PLUGINDIR)/$(PLUGIN).py

View file

@ -0,0 +1,11 @@
check_esxi_hardware
=========
Monitoring plugin to check the hardware on VMware ESX/ESXi servers.
This is the public git repository for development of the plugin.
Documentation + Production Ready Plugin
-------------
Please refer to https://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,6 @@
Uploaders: Jan Wagner <waja@cyconet.org>
Recommends: python3-minimal, python-pywbem
Version: 20200710
Homepage: https://github.com/Napsty/check_esxi_hardware
Watch: https://raw.githubusercontent.com/Napsty/check_esxi_hardware/master/check_esxi_hardware.py version = '([0-9.]+)'
Description: Plugin for checking global health of VMware ESX/ESXi host

View file

@ -0,0 +1,12 @@
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, see <https://www.gnu.org/licenses/>

View file

@ -6,3 +6,4 @@ usr/lib/monitoring-plugins/check_iostats usr/lib/nagios/plugins/check_iostats
usr/lib/monitoring-plugins/check_nwc_health usr/lib/nagios/plugins/check_nwc_health
usr/lib/monitoring-plugins/check_iftraffic64 usr/lib/nagios/plugins/check_iftraffic64
usr/lib/monitoring-plugins/check_qnap_health usr/lib/nagios/plugins/check_qnap_health
usr/lib/monitoring-plugins/check_esxi_hardware usr/lib/nagios/plugins/check_esxi_hardware