forked from HariSekhon/Nagios-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_jenkins_security_enabled.py
executable file
·76 lines (61 loc) · 2.03 KB
/
check_jenkins_security_enabled.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
#!/usr/bin/env python
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2017-06-27 23:14:03 +0200 (Tue, 27 Jun 2017)
#
# 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 security is enabled on a Jenkins server via the Rest API
The --password switch accepts either a password or an API token
Tested on Jenkins 2.60.1
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
import os
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 import RestNagiosPlugin
from harisekhon.utils import UnknownError, support_msg_api
except ImportError as _:
print(traceback.format_exc(), end='')
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.1'
# pylint: disable=too-few-public-methods
class CheckJenkinsSecurityEnabled(RestNagiosPlugin):
def __init__(self):
# Python 2.x
super(CheckJenkinsSecurityEnabled, self).__init__()
# Python 3.x
# super().__init__()
self.name = 'Jenkins'
self.default_port = 8080
self.path = '/api/json'
self.json = True
self.msg = self.name + ' security enabled = '
def parse_json(self, json_data):
use_security = json_data['useSecurity']
if not isinstance(use_security, bool):
raise UnknownError('non-boolean returned by Jenkins. {0}'.format(support_msg_api()))
self.msg += '{0}'.format(use_security)
if not use_security:
self.msg += ' (expected \'True\')'
self.critical()
if __name__ == '__main__':
CheckJenkinsSecurityEnabled().main()