Traffic Generators: Difference between revisions

Line 23:
httperf --server waf.avitest.com --port 80 --num-conns 100 --rate 10 --timeout 1
 
= Curl with Parallel =
curl -s -o /dev/null -w "%{http_code}" http://waf.avitest.com
seq 100 | parallel -j0 curl -s -o /dev/null -w "%{http_code}" http://waf.avitest.com
 
for i in `seq 1 99999`; do echo "Status Code:"; curl -s -o /dev/null -w "%{http_code}" https://10.1.1.1; sleep 1; done
 
= Apache Benchmark =