-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdowntime_single_node.py
48 lines (41 loc) · 1.35 KB
/
downtime_single_node.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
#!/usr/bin/python
import subprocess
import signal
import multiprocessing
import socket
# Get hostname
hostname = socket.getfqdn()
class Bcolors:
"""This class allows print to have colors."""
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[44m'
WARNING = '\033[41m'
FAIL = '\033[41m'
ENDC = '\033[0m'
def disable(self):
"""Disable colors once they have been used."""
self.HEADER = ''
self.OKBLUE = ''
self.OKGREEN = ''
self.WARNING = ''
self.FAIL = ''
self.ENDC = ''
def downtime_monitor(host):
ipsoft_mon_counter = 0
ampersand = "&"
host = host.replace("\n", "")
host = host.replace("None", "")
cmd = "curl -sL host.php?hosts=%s%saction=downtime%sduration=100" % (host,ampersand,ampersand) # noqa
print(cmd)
output = subprocess.Popen(cmd.split(),
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
output = output.stdout.read()
print(output)
if ("rrors" in output) or ("Undefined variable:" in output) or ("Trying to get property of non-object" in output):
value = host + ":" + Bcolors.OKGREEN + ' Is not being monitored ' + Bcolors.ENDC
else:
value = host + ":" + Bcolors.OKGREEN + ' Has been Downtimed ' + Bcolors.ENDC
print(value)
downtime_monitor(hostname)