bombardier
v1.2.6
Bombardier は HTTP(S) ベンチマーク ツールです。 Go プログラミング言語で書かれており、その超高速なパフォーマンスにより、Go のデフォルトの http ライブラリの代わりに優れた fasthttp を使用します。
bombardier v1.1
以降では、HTTP/2.x サービスをテストする必要がある場合、またはより RFC 準拠の HTTP クライアントを使用したい場合に、 net/http
クライアントを使用できるようになりました。
go1.18以降でテスト済み。
リリースセクションでバイナリを取得できます。あるいは、最新かつ最高の実行を取得するには:
1.18 以降: go install github.com/codesenberg/bombardier@latest
bombardier [<flags>] <url>
フラグの詳細については、GoDoc を参照してください。
私の知る限り、 fasthttp
で Host ヘッダーを正しく渡すことは不可能です。 net/http
( --http1
/ --http2
フラグ) を使用してこの問題を回避できます。
このサーバーに対してbombardier
実行する例:
> bombardier -c 125 -n 10000000 http://localhost:8080
Bombarding http://localhost:8080 with 10000000 requests using 125 connections
10000000 / 10000000 [============================================] 100.00% 37s Done!
Statistics Avg Stdev Max
Reqs/sec 264560.00 10733.06 268434
Latency 471.00us 522.34us 51.00ms
HTTP codes:
1xx - 0, 2xx - 10000000, 3xx - 0, 4xx - 0, 5xx - 0
others - 0
Throughput: 292.92MB/s
または、現実世界のサーバーに対して (レイテンシー分散を使用して):
> bombardier -c 200 -d 10s -l http://ya.ru
Bombarding http://ya.ru for 10s using 200 connections
[=========================================================================] 10s Done!
Statistics Avg Stdev Max
Reqs/sec 6607.00 524.56 7109
Latency 29.86ms 5.36ms 305.02ms
Latency Distribution
50% 28.00ms
75% 32.00ms
90% 34.00ms
99% 48.00ms
HTTP codes:
1xx - 0, 2xx - 0, 3xx - 66561, 4xx - 0, 5xx - 0
others - 5
Errors:
dialing to the given TCP address timed out - 5
Throughput: 3.06MB/s