forked from HariSekhon/Nagios-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_aws_config_recording.py
executable file
·135 lines (116 loc) · 4.61 KB
/
check_aws_config_recording.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#!/usr/bin/env python3
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2020-01-21 17:35:28 +0000 (Tue, 21 Jan 2020)
#
# 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 AWS Config is enabled and recording
Uses the Boto python library, read here for the list of ways to configure your AWS credentials:
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html
See also various AWS tools in DevOps Bash Tools and DevOps Python tools repos
- https://github.com/HariSekhon/DevOps-Bash-tools
- https://github.com/HariSekhon/DevOps-Python-tools
"""
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
import boto3
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 ERRORS, CriticalError, log, jsonpp
from harisekhon import NagiosPlugin
except ImportError:
print(traceback.format_exc(), end='')
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.1.0'
class CheckAWSConfig(NagiosPlugin):
def __init__(self):
# Python 2.x
super(CheckAWSConfig, self).__init__()
# Python 3.x
# super().__init__()
self.recorder_name = None
self.msg = 'CheckAWSConfig msg not defined'
self.ok()
def add_options(self):
self.add_opt('-n', '--name', help='Name of a specific config record to check (defaults to all of them')
self.add_opt('-l', '--list-recorders', action='store_true',
help='List trails and exit')
def process_args(self):
self.no_args()
self.recorder_name = self.get_opt('name')
def run(self):
client = boto3.client('config')
log.info('describing config recorders')
_ = client.describe_configuration_recorder_status()
log.debug('%s', jsonpp(_))
recorders = _['ConfigurationRecordersStatus']
num_recorders = len(recorders)
log.info('found %s recorders', num_recorders)
if self.get_opt('list_recorders'):
print('Config Recorders:\n')
for recorder in recorders:
print(recorder['name'])
sys.exit(ERRORS['UNKNOWN'])
if self.recorder_name:
recorder_info = None
for recorder in recorders:
name = recorder['name']
if self.recorder_name and self.recorder_name != name:
continue
recorder_info = recorder
if not recorder_info:
raise CriticalError('info for aws config recorder \'{}\' not found'.format(self.recorder_name))
recording = recorder_info['recording']
last_status = recorder_info['lastStatus']
if not recording:
self.critical()
if last_status.upper() == 'PENDING':
self.warning()
elif last_status.upper() != 'SUCCESS':
self.critical()
self.msg = 'AWS config recorder \'{}\' recording: {}, lastStatus: {}'\
.format(self.recorder_name, recording, last_status)
else:
self.check_recorders(recorders)
def check_recorders(self, recorder_list):
num_recorders = len(recorder_list)
num_recording = 0
num_laststatus_success = 0
for recorder in recorder_list:
if recorder['recording']:
num_recording += 1
if recorder['lastStatus']:
num_laststatus_success += 1
if num_recorders < 1:
self.warning()
if num_recording != num_recorders:
self.critical()
elif num_laststatus_success != num_recorders:
self.warning()
self.msg = 'AWS config recorders recording: {}/{}'.format(num_recording, num_recorders)
self.msg += ', lastStatus success: {}/{}'.format(num_laststatus_success, num_recorders)
self.msg += ' |'
self.msg += ' num_recorders={}'.format(num_recorders)
self.msg += ' num_recording={};;{}'.format(num_recording, num_recorders)
self.msg += ' num_laststatus_success={};{}'.format(num_laststatus_success, num_recorders)
if __name__ == '__main__':
CheckAWSConfig().main()