LoadTestToolbox 0.3.1
See the version list below for details.
dotnet tool install --global LoadTestToolbox --version 0.3.1
dotnet new tool-manifest # if you are setting up this repo dotnet tool install --local LoadTestToolbox --version 0.3.1
#tool dotnet:?package=LoadTestToolbox&version=0.3.1
nuke :add-package LoadTestToolbox --version 0.3.1
LoadTestToolbox
Lightweight tools for load testing web applications, written in C#
These tools should only be used on applications that you own or have permission to test against
Requirements
- .NET SDK 5.0
Setup
~$ dotnet tool install --global LoadTestToolbox
Usage
For the most accurate results, run LoadTestToolbox on a different machine (ideally on the same LAN as) than the one being tested.
~$ ltt <tool> [options]
Tools
LoadTestToolbox currently consists of two tools:
drill
hammer
Drill
Drill helps measure long-term stability by constantly requesting a page at consistent intervals over a more extended period of time.
Example:
~$ ltt drill -url http://example.com/ --rps 500 --duration 10 --filename chart.png
In the above command, LoadTestToolbox will make 500 requests per second (at consistent 20ms intervals) for 10 seconds. After each second, the average response time for the last second is output to the console:
1: 77.91 ms
2: 51.02 ms
3: 9.37 ms
4: 11.78 ms
5: 9.76 ms
6: 10.61 ms
7: 115.06 ms
8: 126.69 ms
9: 96.69 ms
10: 71.15 ms
Upon completion, a Cartesian chart is output to the specified file, showing each request and its response time.
Hammer
Hammer helps measure load spikes by "hammering" a specified URL with a given range of simultaneous requests, and returns the average response time for each.
Example:
~$ ltt hammer --url http://example.com/ --min 1 --max 100 --filename chart.png
The above command will make 1 simultaneous request, then 2, then 3, and so forth, up to 100.
The hammer command is smart about orders of magnitude, so from 10 to 100, it will step up 10 requests at a time (10, 20, 30, etc.); step 100 for 100 to 1000 simultaneous requests (100, 200, ..., 1000); and so forth.
The average response time for each set of requests is output to the console:
1: 31.24 ms
2: 7.81 ms
3: 5.21 ms
4: 3.9 ms
5: 6.25 ms
6: 5.21 ms
7: 2.23 ms
8: 1.95 ms
9: 3.48 ms
10: 4.69 ms
20: 10.93 ms
30: 13.01 ms
40: 30.85 ms
50: 15.62 ms
60: 19 ms
70: 54.45 ms
80: 58.38 ms
90: 71.7 ms
100: 58.12 ms
A Cartesian chart with the above data is output to the specified file upon completion.
Contributing
Please be sure to read and follow ecoAPM's Contribution Guidelines when submitting issues or pull requests.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
This package has no dependencies.
Version | Downloads | Last updated |
---|---|---|
2.0.0 | 897 | 11/20/2023 |
1.1.0 | 873 | 1/7/2023 |
1.0.0 | 522 | 12/30/2021 |
0.7.2 | 437 | 12/3/2021 |
0.7.1 | 398 | 12/3/2021 |
0.7.0 | 359 | 12/3/2021 |
0.6.0 | 938 | 12/1/2021 |
0.5.0 | 388 | 11/30/2021 |
0.4.0 | 387 | 11/12/2021 |
0.3.2 | 461 | 10/6/2021 |
0.3.1 | 385 | 10/1/2021 |
0.3.0 | 480 | 9/9/2021 |
0.2.0 | 476 | 9/4/2021 |
0.1.1 | 481 | 8/31/2021 |
0.1.0 | 465 | 8/31/2021 |