blob: bc837311645c2d905ed4afc30ce9565f9de84a07 (
plain)
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
|
##############################################################################
# Copyright (c) 2017 ZTE Corporation and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
import os
import pickle
import datetime
sum_dpi_pps = float(0)
sum_dpi_bps = float(0)
for x in range(1, 11):
dpi_result_pps = float(
os.popen(
"cat $HOME/qtip_result/dpi_dump.txt | grep 'nDPI throughput:' | awk 'NR=='" +
str(x) +
" | awk '{print $3}'").read().lstrip())
dpi_result_bps = float(
os.popen(
"cat $HOME/qtip_result/dpi_dump.txt | grep 'nDPI throughput:' | awk 'NR=='" +
str(x) +
" | awk '{print $7}'").read().rstrip())
if (dpi_result_pps > 100):
dpi_result_pps = dpi_result_pps / 1000
if (dpi_result_bps > 100):
dpi_result_bps = dpi_result_bps / 1000
sum_dpi_pps += dpi_result_pps
sum_dpi_bps += dpi_result_bps
dpi_result_pps = sum_dpi_pps / 10
dpi_result_bps = sum_dpi_bps / 10
host = os.popen("hostname").read().rstrip()
log_time_stamp = str(datetime.datetime.utcnow().isoformat())
os.popen(
"cat $HOME/qtip_result/dpi_dump.txt > $HOME/qtip_result/" +
host +
"-" +
log_time_stamp +
".log")
home_dir = str(os.popen("echo $HOME").read().rstrip())
host = os.popen("echo $HOSTNAME")
result = {'pps': round(dpi_result_pps, 3),
'bps': round(dpi_result_bps, 3)}
with open('./result_temp', 'w+') as result_file:
pickle.dump(result, result_file)
|