forked from HariSekhon/Nagios-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_consul_version.py
executable file
·101 lines (85 loc) · 3.32 KB
/
check_consul_version.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/usr/bin/env python
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2016-05-23 17:49:21 +0100 (Mon, 23 May 2016)
#
# https://github.com/harisekhon/nagios-plugins
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn
# and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/harisekhon
#
"""
Nagios Plugin to check the deployed version of Consul matches what's expected.
This version uses the 'consul' command which must be in the $PATH
This is also used in the accompanying test suite to ensure we're checking the right version of Consul
for compatibility for all my other Consul nagios plugins.
Tested on Consul 0.6.3
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
#from __future__ import unicode_literals
import os
import re
import subprocess
import sys
import traceback
srcdir = os.path.abspath(os.path.dirname(__file__))
libdir = os.path.join(srcdir, 'pylib')
sys.path.append(libdir)
try:
# pylint: disable=wrong-import-position
from harisekhon.utils import log, CriticalError, UnknownError, support_msg
from harisekhon.utils import validate_regex, isVersion
from harisekhon import NagiosPlugin
except ImportError as _:
print(traceback.format_exc(), end='')
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.1'
class CheckConsulVersion(NagiosPlugin):
def __init__(self):
# Python 2.x
super(CheckConsulVersion, self).__init__()
# Python 3.x
# super().__init__()
self.msg = 'Consul version unknown - no message defined'
self.version_regex = re.compile(r'^\s*Consul\s+v?(\d+\.\d+\.\d+)')
def add_options(self):
self.add_opt('-e', '--expected', help='Expected version regex (optional)')
def run(self):
expected = self.get_opt('expected')
if expected is not None:
validate_regex(expected)
log.info('expected version regex: %s', expected)
cmd = 'consul version'
log.debug('cmd: ' + cmd)
proc = subprocess.Popen(cmd.split(), stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
(stdout, _) = proc.communicate()
log.debug('stdout: ' + str(stdout))
returncode = proc.wait()
log.debug('returncode: ' + str(returncode))
if returncode != 0 or (stdout is not None and 'Error' in stdout):
raise CriticalError('consul returncode: {0}, output: {1}'.format(returncode, stdout))
version = None
for line in str(stdout).split('\n'):
match = self.version_regex.match(line)
if match:
version = match.group(1)
if not version:
raise UnknownError('Consul version not found in output. Consul output may have changed. {0}'.
format(support_msg()))
if not isVersion(version):
raise UnknownError('Consul version unrecognized \'{0}\'. {1}'.format(version, support_msg()))
self.ok()
self.msg = 'Consul version = {0}'.format(version)
if expected is not None and not re.search(expected, version):
self.msg += " (expected '{0}')".format(expected)
self.critical()
if __name__ == '__main__':
CheckConsulVersion().main()