-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollectMetrics.py
More file actions
executable file
·340 lines (283 loc) · 10.1 KB
/
CollectMetrics.py
File metadata and controls
executable file
·340 lines (283 loc) · 10.1 KB
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
#!/usr/bin/env python
# CollectMetrics.py
from datetime import timedelta, datetime
# from dateutil.tz import tzutc
from os import path
from datetime import datetime
from TimeIt import *
# from dateutil.tz import tzutc
import csv
import datetime
import json
import os
import os.path
import socket
import sys
import time
import uuid
class CollectMetrics:
def __init__( self,
metricsPath,
rulesFile,
LogSizeLimit = 100 * 1024 * 1024, # 100 MB size limit for metrics log
prefix='gauge',
suffix=None,
ext=None
):
ts = time.time()
today = datetime.datetime.fromtimestamp (float(ts)).strftime('%Y-%m-%d')
self.alarmWeight = 6
self.alarmMetrics = []
self.rules = []
self.metricsPath = metricsPath
self.rulesFile = rulesFile
self.logSizeLimit = LogSizeLimit
self.prefix = prefix+'-' if prefix else ''
self.suffix = '-'+suffix if suffix else ''
self.ext = '.'+ext if ext else ''
try:
with open(self.rulesFile) as f:
self.rules = json.load (f)
except Exception as e:
print('JSON FILE LOAD ERROR FOR:', self.rulesFile)
print(e)
if len(self.rules)>0:
for r in self.rules:
self.alarmWeight = self.alarmWeight+r.get('Of', 0)
def getRules (self):
return self.rules
def getTs (self):
return time.time()
def getAlarmMetrics (self):
return self.alarmMetrics
def getAlarmWeight(self):
return self.alarmWeight
def getAlarmStates (self):
return [
'OK',
'ALARM',
'INSUFFICIENT_DATA',
]
def getStatistics (self, rs, action='Average'):
actions = [
'Minimum',
'Maximum',
'Sum',
'Average',
'SampleCount',
# 'Precentile',
]
if action not in actions:
return None
elif action == 'Minimum':
return min(rs)
elif action == 'Maximum':
return max(rs)
elif action == 'Sum':
return sum(rs)
elif action == 'Average':
return sum(rs)/len(rs)
elif action == 'SampleCount':
return len(rs)
elif action == 'Precentile':
return None
def getComparisonOperator(self):
return [
'GreaterThanOrEqualToThreshold',
'GreaterThanThreshold',
'LessThanOrEqualToThreshold',
'LessThanThreshold',
# 'InRangeToThreshold', # GreaterThanOrEqualToThreshold & LessThanOrEqualToThreshold
# 'NotInRangeToThreshold', # not (GreaterThanOrEqualToThreshold & LessThanOrEqualToThreshold)
'EqualToThreshold',
'NotEqualToThreshold',
]
def compare(self, value, threshold, operation):
value = float(value)
threshold = float(threshold)
if operation. Lower() == 'GreaterThanOrEqualToThreshold'.lower():
return True if value >= threshold else False
if operation. Lower() == 'GreaterThanThreshold'.lower():
return True if value > threshold else False
if operation. lower() == 'LessThanThreshold'.lower():
return True if value < threshold else False
if operation. Lower() == 'LessThanOrEqualToThreshold'.lower():
return True if value <= threshold else False
if operation. Lower() == 'EqualToThreshold'.lower():
return True if value==threshold else False
if operation. Lower() == 'NotEqualToThreshold'.lower():
return True if value != threshold else False
return False
def hasAlarm(self, debug=False):
timer = TimeIt()
ts = self.getTs()
rules = self.getRules()
res = {}
res ['Alarm'] = 0
res['Items'] = []
res['Details'] = []
res ['Timestamp'] = ts
for rule in rules:
alarm = self.processRule(rule, debug)
timer.set('hasAlarm, processRule '+rule['Metric'])
if alarm:
res['Alarm'] = res ['Alarm'] + 1
res['Items'].append(rule['Metric'])
message = 'ALARM'
else:
message = 'OK'
res['Details'].append({
'Metric': rule['Metric'],
'Name': rule['Name'],
'Alarm': alarm,
'Message': message
})
res['Count'] = len(res['Items'])
res['Duration'] = self.getTs() - ts
if debug:
timer.get(True)
return res
def avgMetrics (self, metric, count):
res = []
rs = self.getTail(metric, count)
for r in rs:
d = r.strip('\n').split(',')
try:
float(d[1])
except Exception as e:
d[1] = 0
res.append(float(d[1]))
return float(sum(res)/len (res)) if len(res) > 0 else 0
def processRule(self, rule, debug=False):
# @requires: Comparison, For, Of, Metric, Threshold alarm = True
alarm = True
res = {}
res['Rule'] = rule
res['Data'] = []
rs = self.getTail(rule['Metric'], rule['Of'])
counter = 0
if debug:
print()
print(('RULE NAME: '+rule['Name']))
print('------------------------------------------------------------------------------------------')
print(f"For {str(rule['For'])}/{str(rule['Of'])} Datapoint on {rule['Metric']} with Threshold {rule['Threshold']} Compare with {rule['Comparison']}")
for r in rs:
d = r.strip('\n').split(',')
try:
float(d[1])
except Exception as e:
d[1] = 0
res['Data'].append({'TS': float(d[0]), 'Value': float(d[1])})
if self.compare(d[1], rule['Threshold'], rule['Comparison']):
if debug:
print(('\t\tThreshold: '+str(d[1])))
counter = counter + 1
else:
if debug:
print(('\tok: '+str(d[1])))
statMessage = str(counter)+'/'+str(rule['Of'])+' status versus '+str(rule['For'])+'/'+str(rule['Of'])+' threshold '+rule['Threshold']
if counter == rule['For']:
res['Alarm'] = True
alarm = True
statMessage = '\t\tThreshold Crossed !!! '+statMessage
else:
res['Alarm'] = False
alarm = False
statMessage = '\tok... '+statMessage
if debug:
print('RESULT -----------------------------------------------------------------------------------')
print(statMessage)
self.alarmMetrics.append(res)
return alarm
def getStates(self):
return [
'PUBLIC-FAIL',
'PUBLIC-PASS'
'BACKUP-FAIL',
'BACKUP-PASS',
'FAILOVER-PASS',
'FAILOVER-FAIL',
'UNKNOWN'
]
def getTail(self, metric, lines = 1):
file = self.getFileName(metric)
res = []
try:
with open(file, "r") as f:
res = f.readlines()[-lines:]
return res[-lines:] if len(res) <= lines else res
except IOError:
print('getTail Error! ')
print('\tMetric:', metric)
print('\tFile:', file)
except Exception as e:
print(('getTail unexpected error!',str(e)))
return res
def getFileName(self, metric):
return self.metricsPath+self.prefix+metric+self.suffix+self.ext
def set(self, data, debug=False):
ts = self.getTs()
LogSize = 0
if debug== True:
print()
print('CollectMetrics::set() ................................')
for metric in data:
file = self.getFileName(metric)
try:
logSize = os.path.getsize(file) + logSize
except Exception as e:
print(('New gauge !!! '+str(e)))
print(('\tMetric: '+metric))
print(('\tFile: '+file))
fileMode = 'w' if logSize > self.logSizeLimit else 'a'
myCheck = {}
for metric in data:
file = self.getFileName(metric)
with open(file, fileMode) as f:
con = str(ts)+', '+str(data [metric])+"\n"
myCheck[metric] = data[metric]
if debug:
print(('Write to : '+file))
print(('Content : '+str(con)))
f.write(con)
if debug:
print((json.dumps (myCheck)))
return True
if __name__ == "__main__":
PATH = os.path.dirname(os.path.abspath(__file__))
metricsPath = path+'/logs/'
rulesFile = path+'/config/alarm-rules.json'
ts = time.time()
today= datetime.datetime.fromtimestamp(float(ts)).strftime('%Y-%m-%d')
utcDate = datetime.datetime. utcfromtimestamp(ts)
cm = CollectMetrics(metricsPath-metricsPath, rulesFile=rulesFile, suffix=today)
rules= cm.getRules()
res = []
countRules = str(len(rules))
print()
print('RULES('+str(countRules)+') QA -------------------------------------------------------------------')
print(json.dumps(rules))
res = cm.hasAlarm()
if (res.get('Alarm', 0)) > 0:
print('ALARM ...')
print()
print('getAlarmMetrics() QA ----------------------------------------------------------------')
print((json.dumps (cm.getAlarmMetrics())))
# getStatistics QA
rs = [10,10,0,0,10]
actions = [
'Minimum'
'Maximum'
'Sum',
'Average',
'SampleCount',
#'Precentile',
]
print()
print('getStatistics() QA ----------------------------------------------------------------')
print(('Today : '+today))
print('rs: '+str(json.dumps(rs)))
for action in actions:
print(('getStatistics (rs, '+action+') = '+str(cm.getStatistics (rs, action))))
print('Took : '+str(time.time() - ts))
print(('UTC : '+str(utcDate)))