https://github.com/danihodovic/docker-vegeta
https://github.com/danihodovic/docker-vegeta
docker http load-testing vegeta
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/danihodovic/docker-vegeta
- Owner: danihodovic
- Created: 2016-07-05T11:36:40.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-07-28T15:06:29.000Z (over 9 years ago)
- Last Synced: 2024-12-27T21:33:46.595Z (about 1 year ago)
- Topics: docker, http, load-testing, vegeta
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-vegeta
Docker image for the Vegeta HTTP load testing tool (https://github.com/tsenart/vegeta).
## Usage
Reporting to stdout
$ docker run danihodovic/vegeta bash -c 'echo GET https://google.com | vegeta attack -duration=1s | vegeta report'
Reporting to a file on host and reading the report
$ docker run -v $(pwd):/app danihodovic/vegeta bash -c 'echo GET https://google.com | vegeta attack -duration=1s > report.bin'
$ docker run -v $(pwd):/app danihodovic/vegeta bash -c 'cat report.bin | vegeta report'