check_sensors.py 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. #####################################################################
  4. # (c) 2010-2011 by Sven Velt and team(ix) GmbH, Nuernberg, Germany #
  5. # sv@teamix.net #
  6. # (c) 2016 by Sven Velt, Germany #
  7. # sven-mymonplugins@velt.biz #
  8. # #
  9. # This file is part of "velt.biz - My Monitoring Plugins" #
  10. # a fork of "team(ix) Monitoring Plugins" in 2015 #
  11. # URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/ #
  12. # #
  13. # This file is free software: you can redistribute it and/or modify #
  14. # it under the terms of the GNU General Public License as published #
  15. # by the Free Software Foundation, either version 2 of the License, #
  16. # or (at your option) any later version. #
  17. # #
  18. # This file is distributed in the hope that it will be useful, but #
  19. # WITHOUT ANY WARRANTY; without even the implied warranty of #
  20. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  21. # GNU General Public License for more details. #
  22. # #
  23. # You should have received a copy of the GNU General Public License #
  24. # along with this file. If not, see <http://www.gnu.org/licenses/>. #
  25. #####################################################################
  26. import datetime
  27. import time
  28. import os
  29. import re
  30. import sys
  31. try:
  32. from monitoringplugin import MonitoringPlugin
  33. except ImportError:
  34. print '=========================='
  35. print 'AIKS! Python import error!'
  36. print '==========================\n'
  37. print 'Could not find "monitoringplugin.py"!\n'
  38. print 'Did you download "%s"' % os.path.basename(sys.argv[0])
  39. print 'without "monitoringplugin.py"?\n'
  40. print 'Please go back to'
  41. print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
  42. print 'or even better:'
  43. print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
  44. print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
  45. sys.exit(127)
  46. plugin = MonitoringPlugin(pluginname='check_sensors', tagforstatusline='Sensors', description='Check environment sensors', version='0.2')
  47. plugin.add_cmdlineoption('-s', '', 'sensorid', '(comma separated list of) sensor id(s), no spaces', default=None)
  48. plugin.add_cmdlineoption('-m', '', 'maxage', 'maximum age of data files (default: 900 seconds/15 minutes)', type="int", default=900)
  49. plugin.add_cmdlineoption('-p', '', 'path', 'path to data files', default='/tmp')
  50. plugin.add_cmdlineoption('-b', '', 'basefilename', 'base of sensor file name', default='sensor_')
  51. plugin.add_cmdlineoption('-w', '', 'tempwarn', 'warning thresold for temperature sensors', default=None)
  52. plugin.add_cmdlineoption('-c', '', 'tempcrit', 'critical thresold for temperature sensors', default=None)
  53. plugin.add_cmdlineoption('-W', '', 'humwarn', 'warning thresold for humidity sensors', default=None)
  54. plugin.add_cmdlineoption('-C', '', 'humcrit', 'critical thresold for humidity sensors', default=None)
  55. plugin.parse_cmdlineoptions()
  56. # No sensor id
  57. if not plugin.options.sensorid:
  58. plugin.back2nagios(3, 'Need at least one sensor id!')
  59. # Make list of sensor ids
  60. if ',' in plugin.options.sensorid:
  61. plugin.options.sensorid = plugin.options.sensorid.split(',')
  62. else:
  63. plugin.options.sensorid = [plugin.options.sensorid,]
  64. # Check all sensor ids are hex
  65. re_hex = re.compile('^[0-9A-Fa-f]+$')
  66. for sid in plugin.options.sensorid:
  67. if not re_hex.search(sid):
  68. plugin.back2nagios(3, 'Sensor id "%s" must be integer or hex!' % sid)
  69. plugin.verbose(1, 'Sensor id(s): ' + ' - '.join([str(s) for s in plugin.options.sensorid]))
  70. searchpattern = re.compile(r'(\d+)\s+Sensor:\s*([0-9A-Za-z]+)\s+Raw:\s*(-?[0-9\.]+)?\s+Value:\s*(-?[0-9\.]+)\s+Unit:\s*(\S+)\b')
  71. for sensorid in plugin.options.sensorid:
  72. filename = os.path.join(plugin.options.path, '%s%s' % (plugin.options.basefilename, sensorid))
  73. try:
  74. plugin.verbose(2, 'Reading sensor %s' % sensorid)
  75. data = file(filename).readlines()
  76. except IOError:
  77. plugin.back2nagios(3, 'Could not read file "%s"' % filename)
  78. if plugin.options.verbose >= 3:
  79. plugin.verbose(3, 'Read line(s):' % data)
  80. for line in data:
  81. plugin.verbose(3, '--> ' + line.lstrip().rstrip())
  82. plugin.verbose(2, 'Checking age of file')
  83. fileage = time.time() - os.path.getmtime(filename)
  84. if fileage > plugin.options.maxage:
  85. returncode = 3
  86. plugin.add_output('Data of sensor "%s" to old' % sensorid)
  87. plugin.add_multilineoutput('%s %s because of file age: %s, limit: %s' % (sensorid, plugin.RETURNSTRINGS[returncode], plugin.seconds_to_timedelta(fileage), plugin.seconds_to_timedelta(plugin.options.maxage)))
  88. plugin.add_returncode(returncode)
  89. plugin.verbose(2, 'File to old, age: %s but only %s seconds allowed'% (long(fileage), plugin.options.maxage))
  90. else:
  91. plugin.verbose(2, 'File age OK, age: %s and %s seconds are allowed'% (long(fileage), plugin.options.maxage))
  92. valuesinfile = 0
  93. for line in data:
  94. result = searchpattern.search(line)
  95. if result:
  96. sensor_type = None
  97. (readtime, sid, raw, value, unit) = result.groups()
  98. readtime = datetime.datetime.fromtimestamp(long(readtime))
  99. readtime = readtime.isoformat(' ')
  100. if unit in ['degC', '\xc2\xb0C']:
  101. sensor_type = 'temp'
  102. sensor_name = 'temp_' + str(sensorid)
  103. warn = plugin.options.tempwarn
  104. crit = plugin.options.tempcrit
  105. unit = 'C'
  106. pdunit = ''
  107. elif unit == '%RH':
  108. sensor_type = 'hum'
  109. sensor_name = 'hum_' + str(sensorid)
  110. warn = plugin.options.humwarn
  111. crit = plugin.options.humcrit
  112. pdunit = '%'
  113. if sensor_type:
  114. valuesinfile += 1
  115. returncode = plugin.value_wc_to_returncode(float(value), warn, crit)
  116. if returncode == 0:
  117. plugin.add_output('%s: %s%s' % (sensor_name, value, unit))
  118. else:
  119. plugin.add_output('%s: %s %s%s' % (sensor_name, plugin.RETURNSTRINGS[returncode], value, unit))
  120. plugin.add_returncode(returncode)
  121. plugin.add_multilineoutput('%s %s: %s%s (%s)' % (sensor_name, plugin.RETURNSTRINGS[returncode], value, unit, readtime))
  122. plugin.format_add_performancedata(sensor_name, value, pdunit, warn=warn, crit=crit)
  123. else:
  124. plugin.verbose(1, 'Unknown sensor type "%s" on %s' % (unit, sensorid))
  125. if valuesinfile == 0:
  126. plugin.verbose(2, 'No data found for sensor %s' % sensorid)
  127. plugin.exit()