Difference between revisions of "Http stress testers"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
+ | # Use k6 | ||
+ | |||
+ | # Simple using ddosify | ||
+ | |||
+ | https://github.com/ddosify/ddosify/releases | ||
+ | ``` | ||
+ | .\ddosify.exe -n 1000 -t https://example.com | ||
+ | ``` | ||
+ | |||
+ | # Bash | ||
+ | ``` | ||
seq 30 | xargs -n 1 -P 30 bash -c "curl https://www.example.com/path/health --resolve www.example.com:443:10.x.x.x -s | grep -i health > /dev/null || echo 1" | seq 30 | xargs -n 1 -P 30 bash -c "curl https://www.example.com/path/health --resolve www.example.com:443:10.x.x.x -s | grep -i health > /dev/null || echo 1" | ||
+ | ``` | ||
https://github.com/mcollina/autocannon | https://github.com/mcollina/autocannon |
Latest revision as of 04:00, 14 January 2024
Use k6
Simple using ddosify
https://github.com/ddosify/ddosify/releases
.\ddosify.exe -n 1000 -t https://example.com
Bash
seq 30 | xargs -n 1 -P 30 bash -c "curl https://www.example.com/path/health --resolve www.example.com:443:10.x.x.x -s | grep -i health > /dev/null || echo 1"
https://github.com/mcollina/autocannon
https://github.com/GlenTiki/autocannon-go
https://github.com/tsenart/vegeta
https://geshan.com.np/blog/2020/09/vegeta-load-testing-primer-with-examples/