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