Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Fast cross-platform HTTP benchmarking tool written in Go

License

NotificationsYou must be signed in to change notification settings

codesenberg/bombardier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logobombardier is a HTTP(S) benchmarking tool. It is written in Go programming language and uses excellentfasthttp instead of Go's default http library, because of its lightning fast performance.

Withbombardier v1.1 and higher you can now usenet/http client if you need to test HTTP/2.x services or want to use a more RFC-compliant HTTP client.

Installation

You can grab binaries in thereleases section.Alternatively, to get latest and greatest run:

Go 1.18+:go install github.com/codesenberg/bombardier@latest

Usage

bombardier [<flags>] <url>

For a more detailed information about flags consultGoDoc.

Known issues

AFAIK, it's impossible to pass Host header correctly withfasthttp, you can usenet/http(--http1/--http2 flags) to workaround this issue.

Examples

Example of runningbombardier againstthis server:

> bombardier -c 125 -n 10000000 http://localhost:8080Bombarding 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

Or, against a realworld server(with latency distribution):

> bombardier -c 200 -d 10s -l http://ya.ruBombarding 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

[8]ページ先頭

©2009-2025 Movatter.jp