Files
old-vegeta/README.md

68 lines
1.6 KiB
Markdown
Raw Normal View History

2013-08-13 18:51:00 +02:00
# Vegeta
Vegeta is a versatile HTTP load testing tool built out of need to drill
2013-08-14 17:31:22 +02:00
HTTP services with a constant request rate.
2013-08-13 18:51:00 +02:00
2013-08-14 15:18:05 +02:00
![Vegeta](https://dl.dropboxusercontent.com/u/83217940/vegeta.png)
2013-08-13 18:51:00 +02:00
## Install
You need go installed and `GOBIN` in your `PATH`. Once that is done, run the
command:
```shell
$ go install github.com/tsenart/vegeta
```
## Usage
```shell
$ vegeta -h
Usage of vegeta:
-duration=10s: Duration of the test
2013-08-14 14:21:22 +02:00
-ordering="random": Attack ordering [sequential, random]
2013-08-13 18:51:00 +02:00
-rate=50: Requests per second
-reporter="text": Reporter to use [text]
-targets="targets.txt": Targets file
```
#### -duration
Specifies the amount of time to issue request to the targets.
The internal concurrency structure's setup has this value as a variable.
The actual run time of the test can be longer than specified due to the
responses delay.
#### -ordering
Specifies the ordering of target attack. The default is `random` and
it will randomly pick one of the targets per request without ever choosing
that target again.
The other option is `sequential` and it does what you would expect it to
do.
#### -rate
Specifies the requests per second rate to issue requests with against
the targets
#### -reporter
Specifies the reporting type to display the results with.
The default is a text report printed to stdout.
#### -targets
Specifies the attack targets in a line sepated file. The format should
be as follows:
```
GET http://goku:9090/path/to/dragon?item=balls
HEAD http://goku:9090/path/to/success
...
```
## TODO
* Add timeout options to the requests
2013-08-14 14:21:22 +02:00
* Graphical reporters
2013-08-14 17:31:22 +02:00
* More tests
2013-08-13 18:51:00 +02:00
## Licence
See the `LICENSE` file.
2013-08-13 04:45:22 -07:00