-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_plots.py
101 lines (86 loc) · 2.34 KB
/
generate_plots.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
#!/usr/bin/env python
import csv
from itertools import cycle
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
def to_python(s):
if s.endswith('app'):
return s
elif '.' in s:
return float(s)
else:
return int(s)
def load(p):
with open(p, 'r') as f:
report = csv.reader(f)
raw_data = [list(map(to_python, l)) for l in report]
data = {}
for i in raw_data:
title = i[0]
if title not in data:
data[title] = []
data[title].append(i[1:])
return data
def plot(data, ax, y_index, x_index=0):
markers = cycle(['o', 'x', '+', '*', '.'])
for label, rows in data.items():
x = [i[x_index] for i in rows]
y = [i[y_index] for i in rows]
ax.scatter(x, y, label=label, marker=next(markers))
def plots(plots_desc, data):
for p in plots_desc:
title, x_desc, y_desc, prepare, fname = p
x_label, x_index = x_desc
y_label, y_index = y_desc
fig, ax = plt.subplots()
prepare(ax)
ax.set_title(title)
plot(data, ax, y_index, x_index)
ax.legend()
ax.set_xlabel(x_label)
ax.set_ylabel(y_label)
fig.savefig('artifacts/plots/' + fname)
def main():
plots(
[
[
"Requests/sec",
["delay [ms]", 0],
["req/s", 1],
lambda ax: ax.set_yscale("log", nonposx='clip'),
"requests_per_sec.png"
],
[
"Transfer",
["delay [ms]", 0],
["KB/s", 2],
lambda ax: ax.set_yscale("log", nonposx='clip'),
"transfer.png"
],
[
"Latency",
["delay [ms]", 0],
["KB/s", 3],
lambda ax: ax,
"latency.png"
],
[
"Timeouts",
["delay [ms]", 0],
["errors", 5],
lambda ax: ax,
"timeouts.png"
],
[
"All Errors",
["delay [ms]", 0],
["errors", 6],
lambda ax: ax,
"all_errors.png"
]
],
load('./artifacts/results.csv')
)
if __name__ == '__main__':
main()