From 2df12038b244fc28c1bc1309f4fa4848e92b885d Mon Sep 17 00:00:00 2001 From: Waldir Pimenta Date: Sun, 12 May 2019 12:38:37 +0100 Subject: [PATCH] vegeta: various improvements (#3014) Some of these changes come from suggestions in review of PR #2519; others were minor improvements I made while editing the page. --- pages/common/vegeta.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/common/vegeta.md b/pages/common/vegeta.md index a4322cd52..56ca2915d 100644 --- a/pages/common/vegeta.md +++ b/pages/common/vegeta.md @@ -1,6 +1,6 @@ # vegeta -> Vegeta is both a command line utility and a library for HTTP load testing. +> A command line utility and a library for HTTP load testing. > See also `ab`. - Launch an attack lasting 30 seconds: @@ -15,14 +15,14 @@ `echo "{{GET https://example.com}}" | vegeta attack -duration={{30s}} -rate={{10}}` -- Launch an attack and display for a report: +- 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 against time): +- 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` +`vegeta attack -duration={{30s}} -targets={{requests.txt}} | vegeta report`