wrk

HTTP 벤치마킹 도구. 더 많은 정보: https://github.com/wg/wrk.

  • 12개의 스레드를 사용하고 400개의 HTTP 연결을 열어 30초 동안 벤치마크 실행:

wrk -t12 -c400 -d30s "http://127.0.0.1:8080/index.html"

  • 사용자 지정 헤더를 사용하여 벤치마크 실행:

wrk -t2 -c5 -d5s -H "Host: example.com" "http://example.com/index.html"

  • 요청 타임아웃을 2초로 설정하여 벤치마크 실행:

wrk -t2 -c5 -d5s --timeout 2s "http://example.com/index.html"