-
Notifications
You must be signed in to change notification settings - Fork 507
/
check_alluxio.py
executable file
·62 lines (48 loc) · 1.51 KB
/
check_alluxio.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
#!/usr/bin/env python3
# vim:ts=4:sts=4:sw=4:et
#
# Author: Hari Sekhon
# Date: 2016-02-02 17:46:18 +0000 (Tue, 02 Feb 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 improve or steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
"""
Nagios Plugin to check an Alluxio Master/Worker is online
Queries the WebUI and displays the version and uptime
Optional --warn-on-recent-start raises WARNING if started within the last 30 mins in order to catch crashes that may
have been restarted by a supervisor process
Tested on Alluxio 1.0.0, 1.0.1, 1.1.0
"""
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
libdir = os.path.abspath(os.path.join(os.path.dirname(__file__), 'pylib'))
sys.path.append(libdir)
try:
# pylint: disable=wrong-import-position
from check_tachyon_master import CheckTachyon
except ImportError:
print(traceback.format_exc(), end='')
sys.exit(4)
__author__ = 'Hari Sekhon'
__version__ = '0.3.0'
class CheckAlluxio(CheckTachyon):
def __init__(self):
# Python 2.x
super(CheckAlluxio, self).__init__()
# Python 3.x
# super().__init__()
self.software = 'Alluxio'
if __name__ == '__main__':
CheckAlluxio().main()