-
Notifications
You must be signed in to change notification settings - Fork 685
/
Copy pathhistorical.py
573 lines (509 loc) · 25.9 KB
/
historical.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
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
"""
Historical
====================================
The Historical class can be used to retrieve historical traffic data through the
REST API (https://www.ntop.org/guides/ntopng/api/rest/api_v2.html).
"""
import time
import pandas as pd
class Historical:
"""
Historiacl provides access to historical information including flows and alerts
:param ntopng_obj: The ntopng handle
"""
def __init__(self, ntopng_obj, ifid=None):
"""
Construct a new Historical object
:param ntopng_obj: The ntopng handle
"""
self.ntopng_obj = ntopng_obj
self.ifid = ifid
self.rest_v2_url = "/lua/rest/v2"
self.rest_pro_v2_url = "/lua/pro/rest/v2"
def get_alert_type_counters(self, epoch_begin, epoch_end):
"""
Return statistics about the number of alerts per alert type
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Statistics
:rtype: object
"""
return(self.ntopng_obj.request(self.rest_v2_url + "/get/alert/type/counters.lua", { "ifid": self.ifid, "status": "historical", "epoch_begin": epoch_begin, "epoch_end": epoch_end }))
def get_alert_severity_counters(self, epoch_begin, epoch_end):
"""
Return statistics about the number of alerts per alert severity
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Statistics
:rtype: object
"""
return(self.ntopng_obj.request(self.rest_v2_url + "/get/alert/severity/counters.lua", { "ifid": self.ifid, "status": "historical", "epoch_begin": epoch_begin, "epoch_end": epoch_end }))
def get_alerts(self, alert_family, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Run queries on the alert database
:param alert_family: The alert family (flow, host, interface, etc)
:type alert_family: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.ntopng_obj.request(self.rest_v2_url + "/get/alert/list/alerts.lua", { "ifid": self.ifid, "alert_family": alert_family, "epoch_begin": epoch_begin, "epoch_end": epoch_end,
"select_clause": select_clause, "where_clause": where_clause,
"maxhits_clause": maxhits, "group_by_clause": group_by, "order_by_clause": order_by }))
def get_alerts_stats(self, epoch_begin, epoch_end, host=None):
"""
Return flow alerts stats
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param host: Host IP address (optional)
:type host: string
:return: Flow alert stats
:rtype: object
"""
get_data = { "ifid": self.ifid, "epoch_begin": epoch_begin, "epoch_end": epoch_end }
if host is not None:
get_data["ip"] = host + ";eq"
return(self.ntopng_obj.request(self.rest_v2_url + "/get/alert/top.lua", get_data))
def get_flow_alerts_stats(self, epoch_begin, epoch_end):
"""
Return flow alerts stats
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Flow alert stats
:rtype: object
"""
return(self.ntopng_obj.request(self.rest_pro_v2_url + "/get/flow/alert/top.lua", { "ifid": self.ifid, "epoch_begin": epoch_begin, "epoch_end": epoch_end }))
def get_flow_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return flow alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("flow", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_active_monitoring_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("active_monitoring", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_host_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return host alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("host", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_interface_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return interface alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("interface", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_mac_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return MAC alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("mac", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_network_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return Network alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("network", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_snmp_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return SNMP alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("snmp", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_system_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return System alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("system", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def get_user_alerts(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Return User alerts matching the specified criteria
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.get_alerts("user", epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by))
def timeseries_to_pandas(self, rsp):
keys = rsp.keys()
if (("start" in keys) and ("count" in keys) and ("step" in keys)):
interval = pd.interval_range(rsp['start'], periods=rsp['count'], freq=rsp['step'])
data = {}
for serie in rsp['series']:
data[serie['label']] = serie['data']
return pd.DataFrame(data, index=interval)
else:
return pd.DataFrame([])
def get_timeseries(self, ts_schema, ts_query, epoch_begin, epoch_end):
"""
Return timeseries in a pandas DataFrame for a specified schema and query
See https://pandas.pydata.org/docs/user_guide/10min.html
:param ts_schema: The timeseries schema (e.g. 'host:traffic')
:type ts_schema: string
:param ts_query: The timeseries query (e.g. 'ifid:0,host:10.0.0.1')
:type ts_query: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Timeseries data
:rtype: object (pandas DataFrame)
"""
rsp = self.ntopng_obj.post_request(self.rest_v2_url + "/get/timeseries/ts.lua", { "ts_schema": ts_schema, "ts_query": ts_query, "epoch_begin": epoch_begin, "epoch_end": epoch_end })
return self.timeseries_to_pandas(rsp)
def get_timeseries_stats(self, ts_schema, ts_query, epoch_begin, epoch_end):
"""
Return stats from timeseries
:param ts_schema: The timeseries schema (e.g. 'host:traffic')
:type ts_schema: string
:param ts_query: The timeseries query (e.g. 'ifid:0,host:10.0.0.1')
:type ts_query: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Timeseries data
:rtype: object (pandas DataFrame)
"""
rsp = self.ntopng_obj.post_request(self.rest_v2_url + "/get/timeseries/ts.lua", { "ts_schema": ts_schema, "ts_query": ts_query, "epoch_begin": epoch_begin, "epoch_end": epoch_end })
return rsp['statistics']
def get_timeseries_metadata(self):
"""
Return timeseries metadata (list all available timeseries)
:return: Timeseries metadata
:rtype: object
"""
return(self.ntopng_obj.request(self.rest_v2_url + "/get/timeseries/type/consts.lua", None))
def get_host_timeseries(self, host_ip, ts_schema, epoch_begin, epoch_end):
"""
Return timeseries data in a pandas DataFrame for a specified interface and host
:param host_ip: The host IP
:type host: string
:param ts_schema: The timeseries schema
:type ts_schema: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Timeseries data
:rtype: object (pandas DataFrame)
"""
return(self.get_timeseries(ts_schema, "ifid:"+str(self.ifid)+",host:"+host_ip, epoch_begin, epoch_end))
def get_host_timeseries_stats(self, host_ip, ts_schema, epoch_begin, epoch_end):
"""
Return timeseries statistics
:param host_ip: The host IP
:type host: string
:param ts_schema: The timeseries schema
:type ts_schema: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Timeseries data
:rtype: object (pandas DataFrame)
"""
return(self.get_timeseries_stats(ts_schema, "ifid:"+str(self.ifid)+",host:"+host_ip, epoch_begin, epoch_end))
def get_interface_timeseries(self, ts_schema, epoch_begin, epoch_end):
"""
Return timeseries data in a pandas DataFrame for a specified interface
:param ts_schema: The timeseries schema
:type ts_schema: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Timeseries data
:rtype: object (pandas DataFrame)
"""
return(self.get_timeseries(ts_schema, "ifid:"+str(self.ifid), epoch_begin, epoch_end))
def get_interface_timeseries_stats(self, ts_schema, epoch_begin, epoch_end):
"""
Return timeseries statistics
:param ts_schema: The timeseries schema
:type ts_schema: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Timeseries data
:rtype: object (pandas DataFrame)
"""
return(self.get_timeseries_stats(ts_schema, "ifid:"+str(self.ifid), epoch_begin, epoch_end))
def get_flows(self, epoch_begin, epoch_end, select_clause, where_clause, maxhits, group_by, order_by):
"""
Run queries on the historical flows database (ClickHouse)
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param select_clause: Select clause (SQL syntax)
:type select_clause: string
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:param maxhits: Max number of results (limit)
:type maxhits: int
:param group_by: Group by condition (SQL syntax)
:type group_by: string
:param order_by: Order by condition (SQL syntax)
:type order_by: string
:return: Query result
:rtype: object
"""
return(self.ntopng_obj.post_request(self.rest_pro_v2_url + "/get/db/flows.lua", { "ifid": self.ifid, "epoch_begin": epoch_begin, "epoch_end": epoch_end, "select_clause": select_clause, "where_clause": where_clause, "maxhits_clause": maxhits, "group_by_clause": group_by, "order_by_clause": order_by }))
def get_topk_flows(self, epoch_begin, epoch_end, max_hits, where_clause):
"""
Retrieve Top-K from the historical flows database
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param maxhits: Max number of results (limit)
:type maxhits: int
:param where_clause: Where clause (SQL syntax)
:type where_clause: string
:return: Query result
:rtype: object
"""
return(self.ntopng_obj.request(self.rest_pro_v2_url + "/get/db/topk_flows.lua", {"ifid": self.ifid, "begin_time_clause": epoch_begin, "end_time_clause": epoch_end, "maxhits_clause": max_hits, "where_clause": where_clause }))
def get_top_conversations(self, epoch_begin, epoch_end, host=None):
"""
Return Top Conversations
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:param host: Host IP address (optional)
:type host: string
:return: Top conversations
:rtype: object
"""
get_data = { "ifid": self.ifid, "epoch_begin": epoch_begin, "epoch_end": epoch_end, "query_preset": "top_conversations", "order": "DESC", "start": 0, "length": 10, "sort": "bytes", "visible_columns": "cli_ip,srv_ip,bytes" }
if host is not None:
get_data["ip"] = host + ";eq"
res = self.ntopng_obj.request(self.rest_pro_v2_url + "/get/db/historical_db_search.lua", get_data)
return(res["records"])
def get_host_top_protocols(self, host, epoch_begin, epoch_end):
"""
Return Top protocols for an host
:param host: Host IP address
:type host: string
:param epoch_begin: Start of the time interval (epoch)
:type epoch_begin: int
:param epoch_end: End of the time interval (epoch)
:type epoch_end: int
:return: Top protocols
:rtype: object
"""
get_data = { "ts_query": "ifid:" + self.ifid + ",host:" + host, "detail_view": "top_protocols", "epoch_begin": epoch_begin, "epoch_end": epoch_end, "new_charts": "true" }
res = self.ntopng_obj.request(self.rest_pro_v2_url + "/get/host/top/ts_stats.lua", get_data)
return(res)
def self_test(self, host):
try:
epoch_end = int(time.time())
epoch_begin = epoch_end - 3600
print("Flow alerts ----------------------------")
print(self.get_flow_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("Active Monitoring alerts ----------------------------")
print(self.get_active_monitoring_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("Host alertss ----------------------------")
print(self.get_host_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("Interface alerts ----------------------------")
print(self.get_interface_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("MAC alerts ----------------------------")
print(self.get_mac_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("Network alerts ----------------------------")
print(self.get_network_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("SNMP alerts ----------------------------")
print(self.get_snmp_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("System alerts ----------------------------")
print(self.get_system_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("User alerts ----------------------------")
print(self.get_user_alerts(epoch_begin, epoch_end, "*", None, 5, None, "epoch_begin"), None, None)
print("Alert counters by type ----------------------------")
print(self.get_alert_type_counters(epoch_begin, epoch_end))
print("Alert counters by severity ----------------------------")
print(self.get_alert_severity_counters(epoch_begin, epoch_end))
print("Host traffic timeseries ----------------------------")
print(self.get_timeseries("host:traffic", "ifid:"+str(self.ifid)+",host:"+host, epoch_begin, epoch_end))
print("Interface traffic timeseries ----------------------------")
print(self.get_interface_timeseries("iface:traffic_rxtx", epoch_begin, epoch_end))
print("Host traffic timeseries ----------------------------")
print(self.get_host_timeseries(host, "host:traffic", epoch_begin, epoch_end))
print("Interface score timeseries ----------------------------")
print(self.get_interface_timeseries("iface:score", epoch_begin, epoch_end))
print("Host flows ----------------------------")
select_clause = "IPV4_SRC_ADDR,IPV4_DST_ADDR,PROTOCOL,IP_SRC_PORT,IP_DST_PORT,L7_PROTO,L7_PROTO_MASTER"
where_clause = "(IP_PROTOCOL_VERSION=4) AND IPV4_SRC_ADDR=(\""+host+"\") AND (PROTOCOL=6) "
maxhits = 10 # 10 records max
print(self.get_flows(epoch_begin, epoch_end, select_clause, where_clause, maxhits, '', ''))
print("Top K flows ----------------------------")
print(self.get_topk_flows(epoch_begin, epoch_end, maxhits, None))
print("Host alerts ----------------------------")
print(self.get_alerts_stats(epoch_begin, epoch_end, host))
print("Host Top conversations ----------------------------")
print(self.get_top_conversations(epoch_begin, epoch_end, host))
print("Host Top protocols ----------------------------")
print(self.get_host_top_protocols(host, epoch_begin, epoch_end))
print("----------------------------")
except:
raise ValueError("Invalid interface ID, host or parameters specified")