check_apaches.py 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. #!/usr/bin/env python
  2. # -*- encoding: utf-8 -*-
  3. #####################################################################
  4. # (c) 2007-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 os
  27. import re
  28. import sys
  29. import urllib2
  30. try:
  31. from monitoringplugin import MonitoringPlugin
  32. except ImportError:
  33. print '=========================='
  34. print 'AIKS! Python import error!'
  35. print '==========================\n'
  36. print 'Could not find "monitoringplugin.py"!\n'
  37. print 'Did you download "%s"' % os.path.basename(sys.argv[0])
  38. print 'without "monitoringplugin.py"?\n'
  39. print 'Please go back to'
  40. print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
  41. print 'or even better:'
  42. print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
  43. print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
  44. sys.exit(127)
  45. plugin = MonitoringPlugin(pluginname='check_apaches', tagforstatusline='APACHE', description='Check Apache workers', version='0.1')
  46. plugin.add_cmdlineoption('-H', '', 'host', 'Hostname/IP to check', default='localhost')
  47. plugin.add_cmdlineoption('-p', '', 'port', 'port to connect', default=None)
  48. plugin.add_cmdlineoption('-P', '', 'proto', 'protocol to use', default='http')
  49. plugin.add_cmdlineoption('-u', '', 'url', 'path to "server-status"', default='/server-status')
  50. plugin.add_cmdlineoption('-a', '', 'httpauth', 'HTTP Username and Password, separated by ":"')
  51. plugin.add_cmdlineoption('-w', '', 'warn', 'warning thresold', default='20')
  52. plugin.add_cmdlineoption('-c', '', 'crit', 'warning thresold', default='50')
  53. plugin.add_cmdlineoption('', '--statistics', 'statistics', 'Output worker statistics', action='store_true')
  54. plugin.parse_cmdlineoptions()
  55. if plugin.options.proto not in ['http', 'https']:
  56. plugin.back2nagios(3, 'Unknown protocol "' + plugin.options.proto + '"')
  57. if not plugin.options.port:
  58. if plugin.options.proto == 'https':
  59. plugin.options.port = '443'
  60. else:
  61. plugin.options.port = '80'
  62. url = plugin.options.proto + '://' + plugin.options.host + ':' + plugin.options.port + '/' + plugin.options.url + '?auto'
  63. plugin.verbose(1, 'Status URL: ' + url)
  64. if plugin.options.httpauth:
  65. httpauth = plugin.options.httpauth.split(':')
  66. if len(httpauth) != 2:
  67. plugin.back2nagios(3, 'Wrong format of authentication data! Need "USERNAME:PASSWORD", got "' + plugin.options.httpauth + '"')
  68. passman = urllib2.HTTPPasswordMgrWithDefaultRealm()
  69. passman.add_password(None, url, httpauth[0], httpauth[1])
  70. authhandler = urllib2.HTTPBasicAuthHandler(passman)
  71. opener = urllib2.build_opener(authhandler)
  72. urllib2.install_opener(opener)
  73. try:
  74. data = urllib2.urlopen(url).read()
  75. except urllib2.HTTPError, e:
  76. plugin.back2nagios(2, 'Could not read data! ' + str(e))
  77. except urllib2.URLError, e:
  78. plugin.back2nagios(2, 'Could not connect to server!')
  79. plugin.verbose(2, 'Got data:\n' + data)
  80. try:
  81. idle = int(re.search('Idle(?:Workers|Servers): (\d+)\n', data).group(1))
  82. busy = int(re.search('Busy(?:Workers|Servers): (\d+)\n', data).group(1))
  83. except:
  84. plugin.back2nagios(2, 'Could not analyze data!')
  85. states = None
  86. if plugin.options.statistics:
  87. scoreboard = re.search('Scoreboard: (.*)\n', data)
  88. if scoreboard:
  89. states = {'_':0, 'S':0, 'R':0, 'W':0, 'K':0, 'D':0, 'C':0, 'L':0, 'G':0, 'I':0, '.':0,}
  90. for worker in scoreboard.group(1):
  91. states[worker] += 1
  92. plugin.add_multilineoutput(str(states['_']) + ' waiting for connection')
  93. plugin.add_multilineoutput(str(states['S']) + ' starting up')
  94. plugin.add_multilineoutput(str(states['R']) + ' reading request')
  95. plugin.add_multilineoutput(str(states['W']) + ' writing/sending reply')
  96. plugin.add_multilineoutput(str(states['K']) + ' keepalive')
  97. plugin.add_multilineoutput(str(states['D']) + ' looking up in DNS')
  98. plugin.add_multilineoutput(str(states['C']) + ' closing connection')
  99. plugin.add_multilineoutput(str(states['L']) + ' logging')
  100. plugin.add_multilineoutput(str(states['G']) + ' gracefully finishing')
  101. plugin.add_multilineoutput(str(states['I']) + ' idle cleanup of worker')
  102. plugin.add_multilineoutput(str(states['.']) + ' open slots(up to ServerLimit)')
  103. returncode = plugin.value_wc_to_returncode(busy, plugin.options.warn, plugin.options.crit)
  104. plugin.add_output(str(busy) + ' busy workers, ' + str(idle) + ' idle')
  105. plugin.add_returncode(returncode)
  106. plugin.format_add_performancedata('busy', busy, '', warn=plugin.options.warn, crit=plugin.options.crit, min=0.0)
  107. plugin.format_add_performancedata('idle', idle, '')
  108. plugin.exit()