-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark_combined_report_example.html
More file actions
82 lines (74 loc) · 2.7 KB
/
benchmark_combined_report_example.html
File metadata and controls
82 lines (74 loc) · 2.7 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
<html>
<head>
<title>PyProxy Performance Benchmark</title>
<style>
body { font-family: Arial, sans-serif; margin: 40px; background-color: #f5f5f5; color: #333; }
h1, h2, h3 { color: #2c3e50; }
table { width: 50%; border-collapse: collapse; margin-bottom: 30px; }
th, td { border: 1px solid #ccc; padding: 10px; text-align: center; }
th { background-color: #3498db; color: white; }
tr:nth-child(even) { background-color: #ecf0f1; }
tr:hover { background-color: #d0e4f5; }
.summary { background-color: #ffffff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 40px; }
iframe { border: none; border-radius: 8px; margin-top: 20px; }
hr { border: none; height: 1px; background-color: #ddd; margin: 40px 0; }
</style>
</head>
<body>
<h1>Global Proxy Performance Benchmark</h1>
<div class="summary">
<h2>Global Performance Summary</h2>
<table>
<tr><th>Metric</th><th>Value</th></tr>
<tr><td>Global average without proxy</td><td>0.341067 seconds</td></tr>
<tr><td>Global average with proxy</td><td>0.414619 seconds</td></tr>
<tr><td>Impact</td><td>Slowdown of 21.57%</td></tr>
</table>
</div>
<div class="summary">
<h2>Benchmark Results Summary</h2>
<table>
<thead>
<tr>
<th>URL</th>
<th colspan="3">Without Proxy</th>
<th colspan="3">With Proxy</th>
</tr>
<tr>
<th></th>
<th>Avg (s)</th>
<th>Min (s)</th>
<th>Max (s)</th>
<th>Avg (s)</th>
<th>Min (s)</th>
<th>Max (s)</th>
</tr>
</thead>
<tbody>
<tr>
<td>http://example.com</td>
<td>0.24766</td>
<td>0.19376</td>
<td>0.30262</td>
<td>0.27064</td>
<td>0.19926</td>
<td>0.30419</td>
</tr>
<tr>
<td>https://example.com</td>
<td>0.43447</td>
<td>0.33968</td>
<td>0.48372</td>
<td>0.55860</td>
<td>0.41271</td>
<td>0.67175</td>
</tr>
</tbody>
</table>
</div>
<hr>
<h2>Graphs</h2>
<p>Global interactive response time graph:</p>
<iframe src="benchmark_combined_interactive_example.html" width="100%" height="600"></iframe>
</body>
</html>