check_collectd.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. #####################################################################
  4. # (c) 2016 by Sven Velt, Germany #
  5. # sven-mymonplugins@velt.biz #
  6. # #
  7. # This file is part of "velt.biz - My Monitoring Plugins" #
  8. # a fork of "team(ix) Monitoring Plugins" in 2015 #
  9. # URL: https://gogs.velt.biz/velt.biz/MyMonPlugins/ #
  10. # #
  11. # This file is free software: you can redistribute it and/or modify #
  12. # it under the terms of the GNU General Public License as published #
  13. # by the Free Software Foundation, either version 2 of the License, #
  14. # or (at your option) any later version. #
  15. # #
  16. # This file is distributed in the hope that it will be useful, but #
  17. # WITHOUT ANY WARRANTY; without even the implied warranty of #
  18. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
  19. # GNU General Public License for more details. #
  20. # #
  21. # You should have received a copy of the GNU General Public License #
  22. # along with this file. If not, see <http://www.gnu.org/licenses/>. #
  23. #####################################################################
  24. import os
  25. import re
  26. import socket
  27. import sys
  28. from collections import OrderedDict
  29. try:
  30. from monitoringplugin import MonitoringPlugin
  31. except ImportError:
  32. print '=========================='
  33. print 'AIKS! Python import error!'
  34. print '==========================\n'
  35. print 'Could not find "monitoringplugin.py"!\n'
  36. print 'Did you download "%s"' % os.path.basename(sys.argv[0])
  37. print 'without "monitoringplugin.py"?\n'
  38. print 'Please go back to'
  39. print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
  40. print 'or even better:'
  41. print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
  42. print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
  43. sys.exit(127)
  44. plugin = MonitoringPlugin(
  45. pluginname='check_collectd',
  46. tagforstatusline='COLLECTD',
  47. description='Check values of collectd server',
  48. version='0.1',
  49. )
  50. SOCKPATHs= [
  51. '/var/run/collectd-unixsock',
  52. ]
  53. plugin.add_cmdlineoption('-S', '--socket', 'socket', 'path to socket of collectd', default=None)
  54. plugin.add_cmdlineoption('-H', '--host', 'host', 'Hostname (in collectd) to check', default=None)
  55. plugin.add_cmdlineoption('-V', '--value_spec', 'var', 'value to from collectd', default=None)
  56. plugin.add_cmdlineoption('-w', '', 'warn', 'warning thresold', default=None)
  57. plugin.add_cmdlineoption('-c', '', 'crit', 'warning thresold', default=None)
  58. plugin.parse_cmdlineoptions()
  59. if not plugin.options.host:
  60. plugin.back2nagios(3, 'Need a hostname (-H/--hostname) to check!')
  61. if not plugin.options.var:
  62. plugin.back2nagios(3, 'Need a value_spec (-V/--value_spec) to check!')
  63. # FIXME: New method: find path (file or dir) and test we can read/write from/to it
  64. if not plugin.options.socket:
  65. plugin.verbose(2, "Auto-detecting path to collectd's unixsock...")
  66. for sockpath in SOCKPATHs:
  67. if os.path.exists(sockpath):
  68. plugin.options.socket = sockpath
  69. plugin.verbose(2, 'Found it at "%s"' % sockpath)
  70. break
  71. if not plugin.options.socket:
  72. plugin.back2nagios(3, 'Need a socket path (-S/--socket) to connecto to')
  73. if not os.access(plugin.options.socket, os.W_OK):
  74. plugin.back2nagios(3, 'Could not read from socket "%s"' % plugin.options.socket)
  75. # FIXME: End
  76. s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
  77. s.connect(plugin.options.socket)
  78. command = 'GETVAL "%s/%s"\n' % (plugin.options.host, plugin.options.var)
  79. plugin.verbose(3, 'Socket command: %s' % command.rstrip())
  80. s.send(command)
  81. s.shutdown(socket.SHUT_WR)
  82. answer = ''
  83. try:
  84. while True:
  85. s.settimeout(10)
  86. data = s.recv(32768)
  87. if data:
  88. answer += data
  89. else:
  90. break
  91. except socket.timeout:
  92. plugin.back2nagios(3, 'Timeout while reading from socket')
  93. answer = answer.split('\n')
  94. plugin.verbose(3, 'Socket answer: %s' % answer)
  95. (status, text) = answer.pop(0).split(' ', 1)
  96. try:
  97. status = long(status)
  98. except ValueError:
  99. plugin.back2nagios(3, 'Unknown answer from socket: "%s"' % answer[0])
  100. plugin.verbose(3, 'Socket status code: %s' % status)
  101. if status < 0:
  102. plugin.back2nagios(3, 'Collectd error: "%s"' % text)
  103. answer = answer[:status]
  104. answer = OrderedDict( [ (p[0], float(p[1])) for p in [ p.split('=') for p in answer ] ] )
  105. for (key,value) in answer.iteritems():
  106. returncode = plugin.value_wc_to_returncode(value, plugin.options.warn, plugin.options.crit)
  107. longoutput = '%s: %s' % (key, value)
  108. perfdata={
  109. 'label': key,
  110. 'value': value,
  111. 'unit': '',
  112. 'warn': plugin.options.warn,
  113. 'crit': plugin.options.crit,
  114. }
  115. plugin.remember_check(key, returncode, longoutput, perfdata=[perfdata,])
  116. plugin.brain2output()
  117. plugin.exit()