forked from HariSekhon/Nagios-Plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheck_presto_coordinator.py
executable file
·89 lines (74 loc) · 2.8 KB
/
check_presto_coordinator.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
#!/usr/bin/env python
# coding=utf-8
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2017-09-22 15:45:06 +0200 (Fri, 22 Sep 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 a Presto SQL node is configured as a coordinator via the API
Works on Presto 0.94 onwards (the field for distinguishing a coordinator is not available on 0.93 and prior)
Tested on:
- Presto Facebook versions: 0.152, 0.157, 0.167, 0.179, 0.185, 0.186, 0.187, 0.188, 0.189
- Presto Teradata distribution versions: 0.152, 0.157, 0.167, 0.179
- back tested against all Facebook Presto releases 0.69, 0.71 - 0.189
(see Presto docker images on DockerHub at https://hub.docker.com/u/harisekhon)
"""
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.utils import CriticalError
from harisekhon import RestNagiosPlugin
except ImportError as _:
print(traceback.format_exc(), end='')
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.2'
# pylint: disable=too-few-public-methods
class CheckPrestoCoordinator(RestNagiosPlugin):
def __init__(self):
# Python 2.x
super(CheckPrestoCoordinator, self).__init__()
# Python 3.x
# super().__init__()
self.name = ['Presto Coordinator', 'Presto']
self.default_port = 8080
self.auth = False
self.json = True
self.path = '/v1/service/presto/general'
self.msg = 'Presto SQL node coordinator = '
def parse_json(self, json_data):
presto_service = None
for service in json_data['services']:
if service['type'] == 'presto':
presto_service = service
if not presto_service:
# Originally raised UNKNOWN API error but this is the same circumstance for a Presto worker node
err_msg = "Not a Presto SQL Coordinator"
if self.verbose:
err_msg += "('presto' service not found in list of services, probably a presto worker node)"
raise CriticalError(err_msg)
is_coordinator = presto_service['properties']['coordinator']
self.msg += "'{0}'".format(is_coordinator)
if is_coordinator != 'true':
self.critical()
if __name__ == '__main__':
CheckPrestoCoordinator().main()