Skip to content

Instantly share code, notes, and snippets.

@watermusic
Created March 25, 2014 07:57
Show Gist options
  • Save watermusic/9757008 to your computer and use it in GitHub Desktop.
Save watermusic/9757008 to your computer and use it in GitHub Desktop.
Load Test and Benchmark your web application using Siege
siege -d10 -c50 -i -f /path_to_file/testfile.txt
Siege utility can have following options.
-cNUM : is to simulate the number of concurrent users (NUM count can be changed).
-dNUM : is the duration in second to run the test. (NUM is in seconds)
-rNUM : is the number of times the test can be repeated.
-v : is the verbose mode. Transaction information is printed on the screen.
-i : is the for internet. The requests are fired randomly between the number given in -d option.
-f : is used if multiple urls are tested from file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment