-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresult.html
More file actions
103 lines (103 loc) · 3.65 KB
/
result.html
File metadata and controls
103 lines (103 loc) · 3.65 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
<html>
<head>
<script src="https://cdn.plot.ly/plotly-3.1.2.min.js"></script>
</head>
<body>
<div id="test_run" style="height: fit-content"></div>
<script>
Plotly.newPlot(
document.getElementById("test_run"),
[
{
x: [0, 1, 2, 3, 4, 5, 6, 7, 8],
y: [1, 2, 3, 4, 5, 6, 7, 8, 9],
type: "scatter",
mode: "lines+markers",
name: "test_run",
},
],
{ title: { text: "test_run" } },
);
</script>
<div id="vus" style="height: fit-content"></div>
<script>
Plotly.newPlot(
document.getElementById("vus"),
[
{
x: [0, 1, 2, 3, 4, 5, 6, 7, 8],
y: [50, 50, 75, 100, 100, 150, 200, 250, 300],
type: "bar",
mode: "lines+markers",
name: "vus",
},
],
{ title: { text: "vus" } },
);
</script>
<div id="requests_per_second" style="height: fit-content"></div>
<script>
Plotly.newPlot(
document.getElementById("requests_per_second"),
[
{
x: [0, 1, 2, 3, 4, 5, 6, 7, 8],
y: [480, 520, 640, 780, 890, 980, 1120, 1260, 1410],
type: "bar",
mode: "lines+markers",
name: "requests_per_second",
},
],
{ title: { text: "requests_per_second" } },
);
</script>
<div id="avg_response_time_ms" style="height: fit-content"></div>
<script>
Plotly.newPlot(
document.getElementById("avg_response_time_ms"),
[
{
x: [0, 1, 2, 3, 4, 5, 6, 7, 8],
y: [210, 190, 175, 160, 145, 138, 128, 120, 115],
type: "scatter",
mode: "lines+markers",
name: "avg_response_time_ms",
},
],
{ title: { text: "avg_response_time_ms" } },
);
</script>
<div id="p95_response_time_ms" style="height: fit-content"></div>
<script>
Plotly.newPlot(
document.getElementById("p95_response_time_ms"),
[
{
x: [0, 1, 2, 3, 4, 5, 6, 7, 8],
y: [380, 340, 320, 300, 280, 260, 240, 220, 210],
type: "scatter",
mode: "lines+markers",
name: "p95_response_time_ms",
},
],
{ title: { text: "p95_response_time_ms" } },
);
</script>
<div id="error_rate" style="height: fit-content"></div>
<script>
Plotly.newPlot(
document.getElementById("error_rate"),
[
{
x: [0, 1, 2, 3, 4, 5, 6, 7, 8],
y: [2.3, 1.8, 1.5, 1.3, 1.1, 0.9, 0.8, 0.6, 0.6],
type: "scatter",
mode: "lines+markers",
name: "error_rate",
},
],
{ title: { text: "error_rate" } },
);
</script>
</body>
</html>