Run siege tests to stress-test your application and infrastructure.
- ssh into
jmeter01.aws.conde.io, use your LDAP creds - type
siege -hto see the siege help list
siege [options] <url>Example:
siege -c10 -d1 -t1m http://origin-ap-stag.myapp.com-c10: Concurrency. This is how many simulated users simultaneously begin making requests to the specified URL. In this case, 10.-d1: Delay. This represents a random number of seconds between 1 and specified number. Each simulated user will wait this long after receiving a response before making the next request. In this case we use 1 so that we are always delaying 1 second.-t1m: Time. This is how long the siege lasts. The simulated users continue making requests until this amount of time elapses. in this case, 1 min.
Response info will be logged to the console. After the siege is complete (specified -t has elapsed), summary data will be logged.