Skip to content
forked from tsliwowicz/go-wrk

go-werk - a HTTP benchmarking tool based in spirit on the excellent wrk tool (https://github.com/wg/wrk)

License

Notifications You must be signed in to change notification settings

wolviecb/go-werk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

89 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-werk - an HTTP benchmarking tool

Go

FORK PAUSE

NOTE: I've just forked this from tsliwowicz/go-wrk to add the -insecure flag and ended up doing a bunch linting/styling, which I found just too much for a PR on his repo, drop him a star if this is useful for you

Resuming

go-werk is a modern HTTP benchmarking tool capable of generating significant load when run on a single multi-core CPU. It builds on go language go routines and scheduler for behind the scenes async IO and concurrency.

It was created mostly to examine go language performance and verbosity compared to C (the language wrk was written in. See - https://github.com/wg/wrk). It turns out that it is just as good in terms of throughput! And with a lot less code.

The majority of go-werk is the product of one afternoon, and its quality is comparable to wrk.

Building

go get github.com/wolviecb/go-werk

This will download and compile go-werk. The binary will be placed under your $GOPATH/bin directory

Command line parameters (./go-werk -help)

   Usage: go-werk <options> <url>
   Options:
    -H        header line, joined with ';' (Default )
    -M        HTTP method (Default GET)
    -T        Socket/request timeout in ms (Default 1000)
    -body     request body string or @filename (Default )
    -c        Number of goroutines to use (concurrent connections) (Default 10)
    -ca       CA file to verify peer against (SSL/TLS) (Default )
    -cert     CA certificate file to verify peer against (SSL/TLS) (Default )
    -d        Duration of test in seconds (Default 10)
    -f        Playback file name (Default <empty>)
    -help     Print help (Default false)
    -host     Host Header (Default )
    -http     Use HTTP/2 (Default true)
    -insecure verify TLS certificates (Default true)
    -key      Private key file name (SSL/TLS (Default )
    -no-c     Disable Compression - Prevents sending the "Accept-Encoding: gzip" header (Default false)
    -no-ka    Disable KeepAlive - prevents re-use of TCP connections between different HTTP requests (Default false)
    -redir    Allow Redirects (Default false)
    -v        Print version details (Default false)

Basic Usage

go-werk -c 80 -d 5  http://192.168.1.118:8080/json

This runs a benchmark for 5 seconds, using 80 go routines (connections)

Output:

Running 10s test @ http://192.168.1.118:8080/json
  80 goroutine(s) running concurrently
   142470 requests in 4.949028953s, 19.57MB read
     Requests/sec:    28787.47
     Transfer/sec:    3.95MB
     Avg Req Time:    0.0347ms
     Fastest Request: 0.0340ms
     Slowest Request: 0.0421ms
     Number of Errors:  0

Benchmarking Tips

The machine running go-werk must have a sufficient number of ephemeral ports available and closed sockets should be recycled quickly. To handle the initial connection burst the server's listen(2) backlog should be greater than the number of concurrent connections being tested.

Acknowledgements

golang is awesome. I did not need anything but this to create go-werk. I fully credit the wrk project for the inspiration and even parts of this text. I also used similar command line arguments format and output format.

About

go-werk - a HTTP benchmarking tool based in spirit on the excellent wrk tool (https://github.com/wg/wrk)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%