2018-11-16 14:22:42 +00:00
|
|
|
# vegeta
|
|
|
|
|
2021-05-20 21:13:41 +01:00
|
|
|
> A command-line utility and a library for HTTP load testing.
|
2018-11-16 14:22:42 +00:00
|
|
|
> See also `ab`.
|
2019-06-03 01:06:36 +01:00
|
|
|
> More information: <https://github.com/tsenart/vegeta>.
|
2018-11-16 14:22:42 +00:00
|
|
|
|
|
|
|
- Launch an attack lasting 30 seconds:
|
|
|
|
|
|
|
|
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}}`
|
|
|
|
|
2021-08-15 18:59:09 +01:00
|
|
|
- Launch an attack on a server with a self-signed HTTPS certificate:
|
2018-11-16 14:22:42 +00:00
|
|
|
|
|
|
|
`echo "{{GET https://example.com}}" | vegeta attack -insecure -duration={{30s}}`
|
|
|
|
|
|
|
|
- Launch an attack with a rate of 10 requests per second:
|
|
|
|
|
|
|
|
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} -rate={{10}}`
|
|
|
|
|
2019-05-12 12:38:37 +01:00
|
|
|
- Launch an attack and display a report:
|
2018-11-16 14:22:42 +00:00
|
|
|
|
|
|
|
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} | vegeta report`
|
|
|
|
|
2019-05-12 12:38:37 +01:00
|
|
|
- Launch an attack and plot the results on a graph (latency over time):
|
2018-11-16 14:22:42 +00:00
|
|
|
|
|
|
|
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} | vegeta plot > {{path/to/results.html}}`
|
|
|
|
|
|
|
|
- Launch an attack against multiple URLs from a file:
|
|
|
|
|
2019-05-12 12:38:37 +01:00
|
|
|
`vegeta attack -duration={{30s}} -targets={{requests.txt}} | vegeta report`
|