Skip to content

Instantly share code, notes, and snippets.

@Jwata
Last active August 29, 2015 14:07
Show Gist options
  • Save Jwata/c486837e0b31b04b6f2e to your computer and use it in GitHub Desktop.
Save Jwata/c486837e0b31b04b6f2e to your computer and use it in GitHub Desktop.
# try to send 10 times http request to AWS (US West Virginia )
~% for i in `seq 1 10`;do curl -kL http://ec2-54-88-204-250.compute-1.amazonaws.com/ -o /dev/null -w "%{http_code}\t%{time_total}\n" 2> /dev/null;done
200 0.370
200 0.501
200 0.429
200 0.362
200 0.378
200 0.363
200 0.374
200 0.387
200 0.365
200 0.388
@Jwata
Copy link
Author

Jwata commented Oct 2, 2014

// status_code time_sec
200 0.370
...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment