wrk

HTTP benchmarking tool with scripting support via Lua

brewmacoslinux
Try with needOr install directly
Source

About

HTTP benchmarking tool

Commands

wrk

Examples

Basic benchmark with 4 threads and 100 concurrent connections$ wrk -t4 -c100 -d30s http://example.com
Benchmark with custom HTTP method and headers$ wrk -t4 -c100 -d30s -H 'Authorization: Bearer token' -s script.lua http://example.com
Simple GET request benchmark to measure latency$ wrk -t2 -c50 -d10s http://localhost:3000/api