1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 14:15:28 +02:00
tldr/pages/common/vegeta.md
Managor 23340cc6e0
common/*: reduce usage of "command-line" (part 1) (#16949)
Co-authored-by: Dylan <145150333+dmmqz@users.noreply.github.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2025-06-29 11:48:18 +03:00

29 lines
989 B
Markdown

# vegeta
> A utility and a library for HTTP load testing.
> See also `ab`.
> More information: <https://github.com/tsenart/vegeta>.
- Launch an attack lasting 30 seconds:
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}}`
- Launch an attack on a server with a self-signed HTTPS certificate:
`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}}`
- Launch an attack and display a report:
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} | vegeta report`
- Launch an attack and plot the results on a graph (latency over time):
`echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} | vegeta plot > {{path/to/results.html}}`
- Launch an attack against multiple URLs from a file:
`vegeta attack -duration={{30s}} -targets={{requests.txt}} | vegeta report`