1
0
mirror of https://github.com/Napsty/check_esxi_hardware.git synced 2024-10-22 12:13:46 +02:00

Allow regular expressions from ignore list (-r)

This commit is contained in:
Napsty 2019-05-10 09:59:10 +02:00
parent 8bcf7309d9
commit 8836e8ecea
2 changed files with 5 additions and 5 deletions

View File

@ -8,4 +8,4 @@ This is the public git repository for development of the plugin.
Documentation + Production Ready Plugin Documentation + Production Ready Plugin
------------- -------------
Please refer to http://www.claudiokuenzler.com/nagios-plugins/check_esxi_hardware.php Please refer to https://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php

View File

@ -47,8 +47,8 @@
# The VMware 5.x CIM API is documented here: # The VMware 5.x CIM API is documented here:
# http://pubs.vmware.com/vsphere-50/index.jsp?nav=/5_1_1 # http://pubs.vmware.com/vsphere-50/index.jsp?nav=/5_1_1
# #
# This Nagios plugin is maintained and documented here: # This monitoring plugin is maintained and documented here:
# http://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php # https://www.claudiokuenzler.com/monitoring-plugins/check_esxi_hardware.php
# #
#@--------------------------------------------------- #@---------------------------------------------------
#@ History #@ History
@ -260,7 +260,7 @@
#@ Author : Claudio Kuenzler #@ Author : Claudio Kuenzler
#@ Reason : python3 compatibility #@ Reason : python3 compatibility
#@--------------------------------------------------- #@---------------------------------------------------
#@ Date : 20190503 #@ Date : 20190510
#@ Author : Claudio Kuenzler #@ Author : Claudio Kuenzler
#@ Reason : Allow regular expressions from ignore list (-r) #@ Reason : Allow regular expressions from ignore list (-r)
#@--------------------------------------------------- #@---------------------------------------------------
@ -273,7 +273,7 @@ import re
import pkg_resources import pkg_resources
from optparse import OptionParser,OptionGroup from optparse import OptionParser,OptionGroup
version = '20190503' version = '20190510'
NS = 'root/cimv2' NS = 'root/cimv2'
hosturl = '' hosturl = ''