-
Notifications
You must be signed in to change notification settings - Fork 1
/
intro.html
95 lines (94 loc) · 3.52 KB
/
intro.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Intro | Mocki</title>
<style>
html {
margin: 0%;
padding: 0%;
}
body {
padding: 10px;
padding-left: 20px;
background-color: #f5f5f5;
color: #333;
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
}
h1 {
font-size: 3em;
text-align: center;
margin-bottom: 0%;
}
a {
color: #4CAF50;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
strong {
font-weight: bold;
}
h3 {
font-size: 1.5em;
}
p {
text-align: center;
margin-top: 0%;
}
button {
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 5px;
font-size: 24px;
padding: 10px 20px;
cursor: pointer;
margin-top: 20px;
display: block;
margin: 0 auto;
}
button:hover {
background-color: #307833;
}
</style>
</head>
<body>
<h1>Mocki</h1>
<p>Mocki is a HTTP benchmarking and data generation tool. <u> No scripts or manual data generation anymore!</u></p>
<p>generate traffic simulating users or applications that access a site application or api and see how much traffic that application can handle before it becomes slower or inaccessible</p>
<p>**more bandwidth does not improve load time**</p>
<a style="text-decoration: none;" href="./index.html"><button>Try Now</button></a>
<br>
<p>Download backend:
<a href="https://github.com/mutairibassam/mocki-ui/releases/download/v1.0/mocki-linux" download>Linux (fe17657e05) </a> |
<a href="https://github.com/mutairibassam/mocki-ui/releases/download/v1.0/mocki-macos" download>Macos (b83361b3e5)</a> |
<a href="https://github.com/mutairibassam/mocki-ui/releases/download/v1.0/mocki-win.exe" download>Windows (229ed76cd1) |
<a href="https://github.com/mutairibassam/mocki-ui/releases/download/v1.0/mocki-win-x68.exe" download> Windows x64 (252655cb0d)</a>
</p>
<h3>Appendix</h3>
<ul>
<li>Pipelining: The number of pipelined requests to use. default: 1. Note: backend pipelining support is required, otherwise will be defaulted to 1.</li>
<li>Number of Connection: The number of concurrent connections to use. default: 10.</li>
<li>Max connection: The max number of requests to make per connection to the server. default: 10</li>
<li>Duration: The number of seconds to run the autocannon. default: 10.</li>
</ul>
<h3>Backlog (things might be removed):</h3>
<ul>
<li>Static query params (done)</li>
<li>Add more variables: connection rate, max overall requests, and amount of total requests.</li>
<li>Default test types: Stress Testing, Soak Testing, and Load Testing.</li>
<li>Upload: Upload a form (multipart/form-data).</li>
<li>Workers: Number of worker threads to use to fire requests.</li>
<li>Get copy of generated data.</li>
<li>Support HTTP/2.0</li>
<li>Thresholds</li>
<li>Add fuzzy testing</li>
</ul>
</body>
</html>