Skip to content

Commit

Permalink
siege: add page (#5028)
Browse files Browse the repository at this point in the history
* siege: add page

* fix: Added token syntax & made more consistent with other pages

* Apply suggestions from code review

Co-authored-by: Axel Navarro <[email protected]>

* Fix "More nformation" link syntax

Co-authored-by: bl-ue <[email protected]>
Co-authored-by: Axel Navarro <[email protected]>
  • Loading branch information
3 people authored Jan 8, 2021
1 parent d6311fa commit 76db7af
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pages/common/siege.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# siege

> HTTP loadtesting and benchmarking tool.
> More information: <https://www.joedog.org/siege-manual/>.
- Test a url with default settings:

`siege {{https://example.com}}`

- Test a list of urls:

`siege --file {{path/to/url_list.txt}}`

- Test list of urls in a random order (Simulates internet traffic):

`siege --internet --file {{path/to/url_list.txt}}`

- Benchmark a list of urls (Dont wait between requests):

`siege --benchmark --file {{path/to/url_list.txt}}`

- Set the amount of concurrent connections:

`siege --concurrent={{50}} --file {{path/to/url_list.txt}}`

- Set how long for the siege to run for:

`siege --time={{30s}} --file {{path/to/url_list.txt}}`

0 comments on commit 76db7af

Please sign in to comment.