Skip to content

Instantly share code, notes, and snippets.

@gvych
Last active January 6, 2022 14:36
Show Gist options
  • Save gvych/8bc2813d7ba6215b38656288ed1e4fc8 to your computer and use it in GitHub Desktop.
Save gvych/8bc2813d7ba6215b38656288ed1e4fc8 to your computer and use it in GitHub Desktop.
curl "one-liner" for detailed network metrics of GET request
curl -w @<(echo "\n
time_namelookup: %{time_namelookup}s\n
time_connect: %{time_connect}s\n
time_appconnect: %{time_appconnect}s\n
time_pretransfer: %{time_pretransfer}s\n
time_redirect: %{time_redirect}s\n
time_starttransfer: %{time_starttransfer}s\n
----------\n
time_total: %{time_total}s\n") -s -o NULL https://ya.ru/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment