Difference between revisions of "Http stress testers"
Jump to navigation
Jump to search
| (2 intermediate revisions by the same user not shown) | |||
| 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" | ||
| + | ``` | ||
| + | |||
https://github.com/mcollina/autocannon | https://github.com/mcollina/autocannon | ||
| Line 8: | Line 22: | ||
https://geshan.com.np/blog/2020/09/vegeta-load-testing-primer-with-examples/ | https://geshan.com.np/blog/2020/09/vegeta-load-testing-primer-with-examples/ | ||
| + | |||
| + | |||
| + | |||
| + | # Go | ||
| + | https://stackoverflow.com/questions/40624248/golang-force-http-request-to-specific-ip-similar-to-curl-resolve | ||
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/