check_netconnections.py 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 os
  27. import re
  28. import sys
  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(pluginname='check_netconnections', tagforstatusline='NETCONNS', description='Count network connections', version='0.1')
  45. plugin.add_cmdlineoption('-p', '', 'port', 'port number', default=None)
  46. plugin.add_cmdlineoption('-t', '--tcp', 'tcp', 'count TCP connections (default)', action='store_true')
  47. plugin.add_cmdlineoption('-u', '--udp', 'udp', 'count TCP connections', action='store_true')
  48. plugin.add_cmdlineoption('-4', '', 'v4', 'count IPv4 connections (default)', action='store_true')
  49. plugin.add_cmdlineoption('-6', '', 'v6', 'count IPv6 connections (default)', action='store_true')
  50. plugin.add_cmdlineoption('-w', '', 'warn', 'warning thresold', default='20')
  51. plugin.add_cmdlineoption('-c', '', 'crit', 'warning thresold', default='50')
  52. plugin.parse_cmdlineoptions()
  53. # Need a port number
  54. if not plugin.options.port:
  55. plugin.back2nagios(3, 'No port number specified!')
  56. else:
  57. plugin.options.port = int(plugin.options.port)
  58. # Settings defaults
  59. if not plugin.options.udp and not plugin.options.tcp:
  60. plugin.options.tcp = True
  61. if not plugin.options.v4 and not plugin.options.v6:
  62. plugin.options.v4 = True
  63. plugin.options.v6 = True
  64. # RegExp
  65. v4match = re.compile('^\s*\d*:\s*([0-9A-Fa-f]{8}):([0-9A-Fa-f]{4})\s+([0-9A-Fa-f]{8}):([0-9A-Fa-f]{4})')
  66. v6match = re.compile('^\s*\d*:\s*([0-9A-Fa-f]{32}):([0-9A-Fa-f]{4})\s+([0-9A-Fa-f]{32}):([0-9A-Fa-f]{4})')
  67. # Prepare
  68. count = 0
  69. protos = []
  70. versions = []
  71. if plugin.options.tcp:
  72. protos.append('tcp')
  73. if plugin.options.udp:
  74. protos.append('udp')
  75. if plugin.options.v4:
  76. versions.append('')
  77. if plugin.options.v6:
  78. versions.append('6')
  79. # Go!
  80. for version in versions:
  81. if version == '6':
  82. matcher = v6match
  83. else:
  84. matcher = v4match
  85. for proto in protos:
  86. filename = '/proc/net/%s%s' % (proto, version)
  87. f = file(filename)
  88. lines = f.readlines()
  89. for line in lines:
  90. m = matcher.match(line)
  91. if m:
  92. port = int(m.group(2), 16)
  93. if port == plugin.options.port and m.group(3) not in ['00000000','00000000000000000000000000000000']:
  94. count += 1
  95. returncode = plugin.value_wc_to_returncode(count, plugin.options.warn, plugin.options.crit)
  96. plugin.add_returncode(returncode)
  97. plugin.add_output('%s network connections on port %s' % (count, plugin.options.port))
  98. plugin.format_add_performancedata('netconns_%s' % plugin.options.port, count, '', warn=plugin.options.warn, crit=plugin.options.crit)
  99. plugin.exit()