mirror of
https://github.com/Napsty/check_esxi_hardware.git
synced 2026-02-06 15:15:20 +01:00
Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ec7db6479d | ||
|
|
496ae6cf31 | ||
|
|
d8a95f864f | ||
|
|
156016869a | ||
|
|
03f8ca8335 | ||
|
|
3727e67609 | ||
|
|
8c147a204e | ||
|
|
0036c441de | ||
|
|
c806fb4d90 | ||
|
|
6c8a4bfd63 | ||
|
|
fb038edcda | ||
|
|
3f97ca6485 | ||
|
|
b3c0ca4cdd | ||
|
|
e3a43a5dd0 |
@@ -24,7 +24,7 @@
|
|||||||
# Copyright (c) 2008 David Ligeret
|
# Copyright (c) 2008 David Ligeret
|
||||||
# Copyright (c) 2009 Joshua Daniel Franklin
|
# Copyright (c) 2009 Joshua Daniel Franklin
|
||||||
# Copyright (c) 2010 Branden Schneider
|
# Copyright (c) 2010 Branden Schneider
|
||||||
# Copyright (c) 2010-2015 Claudio Kuenzler
|
# Copyright (c) 2010-2016 Claudio Kuenzler
|
||||||
# Copyright (c) 2010 Samir Ibradzic
|
# Copyright (c) 2010 Samir Ibradzic
|
||||||
# Copyright (c) 2010 Aaron Rogers
|
# Copyright (c) 2010 Aaron Rogers
|
||||||
# Copyright (c) 2011 Ludovic Hutin
|
# Copyright (c) 2011 Ludovic Hutin
|
||||||
@@ -36,6 +36,8 @@
|
|||||||
# Copyright (c) 2012 Craig Hart
|
# Copyright (c) 2012 Craig Hart
|
||||||
# Copyright (c) 2013 Carl R. Friend
|
# Copyright (c) 2013 Carl R. Friend
|
||||||
# Copyright (c) 2015 Andreas Gottwald
|
# Copyright (c) 2015 Andreas Gottwald
|
||||||
|
# Copyright (c) 2015 Stanislav German-Evtushenko
|
||||||
|
# Copyright (c) 2015 Stefan Roos
|
||||||
#
|
#
|
||||||
# The VMware 4.1 CIM API is documented here:
|
# The VMware 4.1 CIM API is documented here:
|
||||||
# http://www.vmware.com/support/developer/cim-sdk/4.1/smash/cim_smash_410_prog.pdf
|
# http://www.vmware.com/support/developer/cim-sdk/4.1/smash/cim_smash_410_prog.pdf
|
||||||
@@ -216,17 +218,35 @@
|
|||||||
#@ Author : Andreas Gottwald
|
#@ Author : Andreas Gottwald
|
||||||
#@ Reason : Fix NoneType element bug
|
#@ Reason : Fix NoneType element bug
|
||||||
#@---------------------------------------------------
|
#@---------------------------------------------------
|
||||||
|
#@ Date : 20150626
|
||||||
|
#@ Author : Claudio Kuenzler (www.claudiokuenzler.com)
|
||||||
|
#@ Reason : Added support for patched pywbem 0.7.0 and new version 0.8.0, handle SSL error exception
|
||||||
|
#@---------------------------------------------------
|
||||||
|
#@ Date : 20150710
|
||||||
|
#@ Author : Stanislav German-Evtushenko
|
||||||
|
#@ Reason : Exit Unknown instead of Critical for timeouts and auth errors
|
||||||
|
#@---------------------------------------------------
|
||||||
|
#@ Date : 20151111
|
||||||
|
#@ Author : Stefan Roos
|
||||||
|
#@ Reason : Removed unused sensor_value variable and string import.
|
||||||
|
#@ Reason : Added global hosturl variable declaration after imports.
|
||||||
|
#@---------------------------------------------------
|
||||||
|
#@ Date : 20160411
|
||||||
|
#@ Author : Claudio Kuenzler (www.claudiokuenzler.com)
|
||||||
|
#@ Reason : Distinguish between pywbem 0.7 and 0.8 (which is now released)
|
||||||
|
#@---------------------------------------------------
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
import pywbem
|
import pywbem
|
||||||
import re
|
import re
|
||||||
import string
|
import pkg_resources
|
||||||
from optparse import OptionParser,OptionGroup
|
from optparse import OptionParser,OptionGroup
|
||||||
|
|
||||||
version = '20150119'
|
version = '20160411'
|
||||||
|
|
||||||
NS = 'root/cimv2'
|
NS = 'root/cimv2'
|
||||||
|
hosturl = ''
|
||||||
|
|
||||||
# define classes to check 'OperationStatus' instance
|
# define classes to check 'OperationStatus' instance
|
||||||
ClassesToCheck = [
|
ClassesToCheck = [
|
||||||
@@ -565,12 +585,28 @@ if os_platform != "win32":
|
|||||||
on_windows = False
|
on_windows = False
|
||||||
import signal
|
import signal
|
||||||
def handler(signum, frame):
|
def handler(signum, frame):
|
||||||
print 'CRITICAL: Execution time too long!'
|
print 'UNKNOWN: Execution time too long!'
|
||||||
sys.exit(ExitCritical)
|
sys.exit(ExitUnknown)
|
||||||
|
|
||||||
# connection to host
|
# connection to host
|
||||||
verboseoutput("Connection to "+hosturl)
|
verboseoutput("Connection to "+hosturl)
|
||||||
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), NS)
|
# pywbem 0.7.0 handling is special, some patched 0.7.0 installations work differently
|
||||||
|
pywbemversion = pkg_resources.get_distribution("pywbem").version
|
||||||
|
verboseoutput("Found pywbem version "+pywbemversion)
|
||||||
|
if '0.7.' in pywbemversion:
|
||||||
|
try:
|
||||||
|
conntest = pywbem.WBEMConnection(hosturl, (user,password))
|
||||||
|
c = conntest.EnumerateInstances('CIM_Card')
|
||||||
|
except:
|
||||||
|
#raise
|
||||||
|
verboseoutput("Connection error, disable SSL certification verification (probably patched pywbem)")
|
||||||
|
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), no_verification=True)
|
||||||
|
else:
|
||||||
|
verboseoutput("Connection worked")
|
||||||
|
wbemclient = pywbem.WBEMConnection(hosturl, (user,password))
|
||||||
|
# pywbem 0.8.0 and later
|
||||||
|
elif '0.8.' in pywbemversion:
|
||||||
|
wbemclient = pywbem.WBEMConnection(hosturl, (user,password), NS, no_verification=True)
|
||||||
|
|
||||||
# Add a timeout for the script. When using with Nagios, the Nagios timeout cannot be < than plugin timeout.
|
# Add a timeout for the script. When using with Nagios, the Nagios timeout cannot be < than plugin timeout.
|
||||||
if on_windows == False and timeout > 0:
|
if on_windows == False and timeout > 0:
|
||||||
@@ -619,22 +655,21 @@ for classe in ClassesToCheck :
|
|||||||
instance_list = wbemclient.EnumerateInstances(classe)
|
instance_list = wbemclient.EnumerateInstances(classe)
|
||||||
except pywbem.cim_operations.CIMError,args:
|
except pywbem.cim_operations.CIMError,args:
|
||||||
if ( args[1].find('Socket error') >= 0 ):
|
if ( args[1].find('Socket error') >= 0 ):
|
||||||
print "CRITICAL: %s" %args
|
print "UNKNOWN: %s" %args
|
||||||
sys.exit (ExitCritical)
|
sys.exit (ExitUnknown)
|
||||||
else:
|
else:
|
||||||
verboseoutput("Unknown CIM Error: %s" % args)
|
verboseoutput("Unknown CIM Error: %s" % args)
|
||||||
except pywbem.cim_http.AuthError,arg:
|
except pywbem.cim_http.AuthError,arg:
|
||||||
verboseoutput("Global exit set to UNKNOWN")
|
verboseoutput("Global exit set to UNKNOWN")
|
||||||
GlobalStatus = ExitCritical
|
GlobalStatus = ExitUnknown
|
||||||
print "UNKNOWN: Authentication Error"
|
print "UNKNOWN: Authentication Error"
|
||||||
sys.exit (GlobalStatus)
|
sys.exit (GlobalStatus)
|
||||||
else:
|
else:
|
||||||
# GlobalStatus = ExitOK #ARR
|
# GlobalStatus = ExitOK #ARR
|
||||||
for instance in instance_list :
|
for instance in instance_list :
|
||||||
sensor_value = ""
|
|
||||||
elementName = instance['ElementName']
|
elementName = instance['ElementName']
|
||||||
if elementName is None :
|
if elementName is None :
|
||||||
elementName = 'Unknown'
|
elementName = 'Unknown'
|
||||||
elementNameValue = elementName
|
elementNameValue = elementName
|
||||||
verboseoutput(" Element Name = "+elementName)
|
verboseoutput(" Element Name = "+elementName)
|
||||||
|
|
||||||
@@ -777,8 +812,8 @@ for classe in ClassesToCheck :
|
|||||||
# Added 20121027 As long as Dell doesnt correct these CIM elements return code we have to ignore it
|
# Added 20121027 As long as Dell doesnt correct these CIM elements return code we have to ignore it
|
||||||
ignore_list.append("System Board 1 Riser Config Err 0: Connected")
|
ignore_list.append("System Board 1 Riser Config Err 0: Connected")
|
||||||
ignore_list.append("System Board 1 LCD Cable Pres 0: Connected")
|
ignore_list.append("System Board 1 LCD Cable Pres 0: Connected")
|
||||||
ignore_list.append("System Board 1 VGA Cable Pres 0: Connected")
|
ignore_list.append("System Board 1 VGA Cable Pres 0: Connected")
|
||||||
ignore_list.append("Add-in Card 4 PEM Presence 0: Connected")
|
ignore_list.append("Add-in Card 4 PEM Presence 0: Connected")
|
||||||
if instance['OperationalStatus'] is not None :
|
if instance['OperationalStatus'] is not None :
|
||||||
elementStatus = instance['OperationalStatus'][0]
|
elementStatus = instance['OperationalStatus'][0]
|
||||||
verboseoutput(" Element Op Status = %d" % elementStatus)
|
verboseoutput(" Element Op Status = %d" % elementStatus)
|
||||||
|
|||||||
Reference in New Issue
Block a user