check_livestatus_latency.py 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. try:
  29. from monitoringplugin import MonitoringPlugin
  30. except ImportError:
  31. print '=========================='
  32. print 'AIKS! Python import error!'
  33. print '==========================\n'
  34. print 'Could not find "monitoringplugin.py"!\n'
  35. print 'Did you download "%s"' % os.path.basename(sys.argv[0])
  36. print 'without "monitoringplugin.py"?\n'
  37. print 'Please go back to'
  38. print 'https://gogs.velt.biz/velt.biz/MyMonPlugins and download it,'
  39. print 'or even better:'
  40. print 'get a full archive at http://gogs.velt.biz/velt.biz/MyMonPlugins/releases'
  41. print 'or a master snapshot at http://gogs.velt.biz/velt.biz/MyMonPlugins/archive/master.tar.gz\n'
  42. sys.exit(127)
  43. plugin = MonitoringPlugin(
  44. pluginname='check_livestatus_latency',
  45. tagforstatusline='LATENCY',
  46. description='Check latency via Livestatus',
  47. version='0.1',
  48. )
  49. SOCKPATHs= [
  50. '/var/cache/naemon/live',
  51. '/usr/local/nagios/var/rw/live',
  52. '/var/lib/nagios3/rw/live',
  53. '/usr/local/icinga/var/rw/live',
  54. '/var/lib/icinga/rw/live',
  55. ]
  56. plugin.add_cmdlineoption('-S', '--socket', 'socket', 'path to livestatus socket', default=None)
  57. plugin.add_cmdlineoption('-w', '', 'warn', 'warning thresold', default='10')
  58. plugin.add_cmdlineoption('-c', '', 'crit', 'warning thresold', default='20')
  59. plugin.parse_cmdlineoptions()
  60. # FIXME: New method: find path (file or dir) and test we can read/write from/to it
  61. if not plugin.options.socket:
  62. plugin.verbose(2, "Auto-detecting path to livestatus unixsock...")
  63. for sockpath in SOCKPATHs:
  64. if os.path.exists(sockpath):
  65. plugin.options.socket = sockpath
  66. plugin.verbose(2, 'Found it at "%s"' % sockpath)
  67. break
  68. if not plugin.options.socket:
  69. plugin.back2nagios(3, 'Need a socket path (-S/--socket) to connecto to')
  70. if not os.access(plugin.options.socket, os.W_OK):
  71. plugin.back2nagios(3, 'Could not read from socket "%s"' % plugin.options.socket)
  72. # FIXME: End
  73. cmd_svc='''GET services
  74. OutputFormat: csv
  75. Stats: min latency
  76. Stats: max latency
  77. Stats: avg latency
  78. Stats: min execution_time
  79. Stats: max execution_time
  80. Stats: avg execution_time
  81. '''
  82. cmd_hst='''GET hosts
  83. OutputFormat: csv
  84. Stats: min latency
  85. Stats: max latency
  86. Stats: avg latency
  87. Stats: min execution_time
  88. Stats: max execution_time
  89. Stats: avg execution_time
  90. '''
  91. # Read service data from socket
  92. s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
  93. s.connect(plugin.options.socket)
  94. plugin.verbose(3, 'Livestatus: GET services')
  95. s.send(cmd_svc)
  96. s.shutdown(socket.SHUT_WR)
  97. answer = ''
  98. try:
  99. while True:
  100. s.settimeout(10)
  101. data = s.recv(32768)
  102. if data:
  103. answer += data
  104. else:
  105. break
  106. except socket.timeout:
  107. plugin.back2nagios(3, 'Timeout while reading from socket')
  108. svc_answer = answer.split('\n')[0].split(';')
  109. plugin.verbose(3, 'Socket answer: %s' % answer.rstrip())
  110. svc_answer = [ float(fl) for fl in svc_answer ]
  111. plugin.verbose(3, 'Answer: %s' % svc_answer)
  112. # Read host data from socket
  113. s = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
  114. s.connect(plugin.options.socket)
  115. plugin.verbose(3, 'Livestatus: GET hosts')
  116. s.send(cmd_hst)
  117. s.shutdown(socket.SHUT_WR)
  118. answer = ''
  119. try:
  120. while True:
  121. s.settimeout(10)
  122. data = s.recv(32768)
  123. if data:
  124. answer += data
  125. else:
  126. break
  127. except socket.timeout:
  128. plugin.back2nagios(3, 'Timeout while reading from socket')
  129. hst_answer = answer.split('\n')[0].split(';')
  130. plugin.verbose(3, 'Socket answer: %s' % answer.rstrip())
  131. hst_answer = [ float(fl) for fl in hst_answer ]
  132. plugin.verbose(3, 'Answer: %s' % hst_answer)
  133. # Check values against thresholds
  134. for (k, v) in (
  135. ('AvgServiceLatency', svc_answer[2]),
  136. ('AvgServiceExecution', svc_answer[5]),
  137. ('AvgHostLatency', hst_answer[2]),
  138. ('AvgHostExecution', hst_answer[5]),
  139. ):
  140. rc = plugin.value_wc_to_returncode(v, plugin.options.warn, plugin.options.crit)
  141. perfdata = { 'label':k, 'value':'%.3f' % v, 'unit':'s', 'warn':plugin.options.warn, 'crit':plugin.options.crit }
  142. plugin.remember_check(k, rc, '%.2fs' % v, perfdata=[perfdata,])
  143. # Exit
  144. plugin.brain2output()
  145. plugin.exit()