forked from cmantas/tiramola_v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Monitoring.py
145 lines (114 loc) · 4.6 KB
/
Monitoring.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
136
137
138
139
140
141
142
143
144
145
import sys
import logging.handlers as handlers
import logging
import shutil
import socket
import fileinput, paramiko, datetime
from lib.persistance_module import env_vars
import xml.parsers.expat
#import CassandraCluster as cluster_manager
from os.path import isfile
from time import sleep
from lib.tiramola_logging import get_logger
LOG_FILENAME = 'files/logs/Coordinator.log'
class GParser:
def __init__(self):
self.inhost =0
self.inmetric = 0
self.allmetrics = {}
self.currhostname = ""
def parse(self, ganglia_file):
"""
parses an xml ganglia file
:param ganglia_file:
:return: a dictionary of all ganlia metrics and their values
"""
p = xml.parsers.expat.ParserCreate()
p.StartElementHandler = self.start_element
p.EndElementHandler = self.end_element
p.ParseFile(ganglia_file)
if self.allmetrics == {}: raise Exception('Host/value not found')
return self.allmetrics
def start_element(self, name, attrs):
# edo xtizo to diplo dictionary. vazo nodes kai gia kathe node vazo polla metrics.
#print attrs
if name == "HOST":
#if attrs["NAME"]==self.host:
self.allmetrics[attrs["NAME"]]={}
# edo ftiaxno ena adeio tuple me key to onoma tou node kai value ena adeio dictionary object.
self.inhost=1
self.currhostname = attrs["NAME"]
#print "molis mpika sto node me dns " , self.currhostname
elif self.inhost == 1 and name == "METRIC": # and attrs["NAME"]==self.metric:
#print "attrname: " , attrs["NAME"] , " attr value: " , attrs["VAL"]
self.allmetrics[self.currhostname][attrs["NAME"]] = attrs["VAL"]
def end_element(self, name):
if name == "HOST" and self.inhost==1:
self.inhost = 0
self.currhostname = ""
class MonitorVms:
def __init__(self, monitoring_address, monitoring_port=8649):
self.ganglia_host = monitoring_address
self.ganglia_port = monitoring_port
## Install logger
self.my_logger = get_logger("MonitorVMs", "INFO", logfile=LOG_FILENAME)
self.allmetrics={}
self.parser = GParser()
# initialize parser object. in the refreshMetrics function call the .parse of the
# parser to update the dictionary object.
self.refreshMetrics()
def refreshMetrics(self):
"""
runs periodically and refreshes the metrics
:return:
"""
#self.my_logger.debug("Refreshing metrics from %s:%s" % (self.ganglia_host, self.ganglia_port))
for res in socket.getaddrinfo(self.ganglia_host, self.ganglia_port, socket.AF_UNSPEC, socket.SOCK_STREAM):
af, socktype, proto, canonname, sa = res
self.soc = None
attempts = 0
while self.soc is None and attempts < 3:
attempts += 1
try:
self.soc = socket.socket(af, socktype, proto)
except socket.error as msg:
s = None
sleep(1)
continue
try:
self.soc.connect(sa)
except socket.error as msg:
self.soc.close()
self.soc = None
sleep(10)
self.my_logger.error("Failed to connect to ganglia endpoint: " + str(self.ganglia_host) + " "+str(msg) + " attempt " + str(attempts) )
continue
break
if self.soc is None:
raise Exception('could not open socket %s:%s (%s)' % (str(self.ganglia_host), str(self.ganglia_port), str(msg)))
sys.exit(1)
self.allmetrics = None
f = self.soc.makefile("r")
try:
self.allmetrics = self.parser.parse(f)
except:
self.my_logger.error("Failed to parse xml from ganglia")
f.close()
f = None
self.soc.close()
#self.my_logger.debug("REFRESHMETRICS allmetrics: "+str(self.allmetrics))
return self.allmetrics
def usage():
print """Usage: check_ganglia \
-h|--host= -m|--metric= -w|--warning= \
-c|--critical= [-s|--server=] [-p|--port=] """
sys.exit(3)
if __name__ == "__main__":
##############################################################
ganglia_host = '83.212.118.57'
ganglia_port = 8649
#monVms = MonitorVms(cluster_manager.get_hosts())
monVms = MonitorVms(ganglia_host, ganglia_port)
allmetrics=monVms.refreshMetrics()
print "allmetrics length ", len(allmetrics)
print allmetrics.keys()