![Patrick East](/assets/img/avatar_default.png)
It now looks at the dib-image-list output and only for a specific image name. It works much better now… Change-Id: I4ea3e92714cdaaea871f643e1131b2470231fd97
57 lines
2.2 KiB
Python
Executable File
57 lines
2.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import argparse
|
|
import re
|
|
|
|
import utils
|
|
|
|
|
|
def check_nodepool_image_status(warning_threshold, critial_threshold, image, check_dib):
|
|
"""Returns a tuple of exit code and message string
|
|
|
|
Exit codes are either 2 -> critical, 1 -> warning, or 0 -> OK
|
|
"""
|
|
try:
|
|
if check_dib:
|
|
cmd = 'dib-image-list'
|
|
else:
|
|
cmd = 'image-list'
|
|
image_list_raw = utils.run_command_local('sudo /usr/local/bin/nodepool ' + cmd)
|
|
image_list_lines = image_list_raw.split('\n')
|
|
newest_image_age = None
|
|
|
|
for line in image_list_lines:
|
|
if re.search('\|\s+' + image + '\s+\|', line):
|
|
match = re.search('\|\s+(\w+)\s+\|\s+(\d+:\d+:\d+:\d+)\s+\|$', line)
|
|
if match:
|
|
status = match.group(1)
|
|
if status == 'ready':
|
|
age_parts = match.group(2).split(':')
|
|
age_in_hours = (int(age_parts[0]) * 24) + int(age_parts[1])
|
|
if (newest_image_age is None) or (age_in_hours < newest_image_age):
|
|
newest_image_age = age_in_hours
|
|
|
|
if newest_image_age is None:
|
|
return 2, 'Error running command, output: ' + image_list_raw
|
|
|
|
exit_code = 0
|
|
if newest_image_age > critial_threshold:
|
|
exit_code = 2
|
|
elif newest_image_age > warning_threshold:
|
|
exit_code = 1
|
|
return exit_code, 'Nodepool image age (hours): ' + str(newest_image_age)
|
|
|
|
except Exception, e:
|
|
return 2, 'Error checking nodepool images: %s' + str(e)
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser(description='Check nodepool image status.')
|
|
parser.add_argument('-w', required=True, type=int, help='warning threshold for age of the image in hours')
|
|
parser.add_argument('-c', required=True, type=int, help='critical threshold for age of the image in hours')
|
|
parser.add_argument('-i', required=True, type=str, help='name of image')
|
|
parser.add_argument('--dib', action='store_true', help='Check dib images.')
|
|
args = parser.parse_args()
|
|
code, message = check_nodepool_image_status(args.w, args.c, args.i, args.dib)
|
|
print message
|
|
exit(code)
|