-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Vasily Korytov edited this page Sep 5, 2015
·
15 revisions
CLI utility for stress testing of HTTP servers with many concurrent connections.
Returns 0
if no errors, 1
if some requests failed, 2
on kill, 3
in case of invalid options
and 4
if it encounters a setrlimit(2)
/getrlimit(2)
error.
Prints elapsed time and error count for each URL to stdout (if any; does not count successful attempts). Usage and runtime errors go to stderr.
httpstress <URL list> [options]
-
URL list
– URLs to fetch (required) -
-c NUM
– concurrent connections number (defaults to 1) -
-n NUM
– total connections number (optional) -
-v
– print version to stdout and exit
httpstress http://localhost https://google.com -c 1000
- This ulility takes care of
ulimit -n
on Unix systems: sets it to the value of-c
option plus 6, if the current limit is smaller. - Output is YAML-formatted. Example:
Errors:
- Location: http://localhost
Count: 334
- Location: https://127.0.0.1
Count: 333
Elapsed time: 4.791903888s