Skip to content

chrillep/load-test

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CLI's for load testing

Table of Contents

wrk install

brew install wrk

wrk run

wrk -t12 -c400 -d30 --latency --timeout 2s <URL>

ab run

ab -n 400 -c 100 -s 2 -t 30 -k <URL>

siege install

brew install siege

siege run

siege -b -r 10 -c 40 <URL>

hey install

brew install hey

hey run

hey -n 400 -c 100 -t 2 <URL>

locust install

brew install locust

locust run

locust -f locust/locustfile.py --headless --users 10 --spawn-rate 1 -H <URL>

k6 install

brew install k6

k6 run

k6

Install all

brew install wrk siege hey locust k6

Run all

wrk -t12 -c400 -d30  --timeout 2s --latency <URL>
ab -n 400 -c 100 -s 2 -t 30 -k <URL>
siege -b -r 10 -c 40 <URL>
hey -n 400 -c 100 -t 2 <URL>
locust -f locust/locustfile.py --headless --users 10 --spawn-rate 1 -H <URL>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages