Skip to content

Instantly share code, notes, and snippets.

@gotterdemarung
Last active February 16, 2017 11:48
Show Gist options
  • Save gotterdemarung/fe9410d83637bc4f80ea7ed1b35574c7 to your computer and use it in GitHub Desktop.
Save gotterdemarung/fe9410d83637bc4f80ea7ed1b35574c7 to your computer and use it in GitHub Desktop.
Curl response time check
$ cat curl-format-short.txt
(dns,con,app,pre,start,total): %{time_namelookup},%{time_connect},[%{time_appconnect}],%{time_pretransfer},%{time_starttransfer},%{time_total} - %{http_code}\n
$ while true; do echo -n `date +"[%m-%d %H:%M:%S]"` && curl -w "@curl-format-short.txt" -o /dev/null -s <address>; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment