# 100000 requests with 30 requests in parallel
$ docker run russmckendrick/ab ab -k -n 100000 -c 30 https://example.com/
Create a file target.list
GET https://example.com/list/user/1
GET https://example.com/list/user/2
GET https://example.com/list/user/3
POST http://example.com/users/sign_up/
Content-Type: application/x-www-form-urlencoded
@/path/to/sign_up.body
The content of the file /path/to/sign_up.body contains the body of the request:
email=test@example.com&password=password
$ cat target.list | vegeta attack -duration=120s -rate=100 | tee /tmp/vegeta-results.bin | vegeta report
https://github.com/tsenart/vegeta/#http-format