ab - Apache Bench
ab -c 200 -n 2000 https://domain.com
hey - hey tool замена ab
hey -c 200 -n 2000 https://domain.com
httperf
httperf --ssl --port 443 --server domain.com --uri=https://domain.com --num-conns=2000 --rate=200
Пример
curl:
curl -X POST ${URL} -H "Authorization: Bearer ${TOKEN}" -H "Content-Type: application/json-patch+json" -d @zabbix.json
ab:
ab -n4 -c2 -H "Authorization: Bearer ${TOKEN}" -T "application/json-patch+json" -p zabbix.json ${URL}
hey:
hey -n 4 -c 2 -m POST -H "Authorization: Bearer ${TOKEN}" -H "Content-Type: application/json-patch+json" -D zabbix.json ${URL}