Skip to content

Instantly share code, notes, and snippets.

@sandeepraju
Created July 20, 2016 21:17
Show Gist options
  • Select an option

  • Save sandeepraju/1f5fbdbdd89551ba7925abe2645f92b5 to your computer and use it in GitHub Desktop.

Select an option

Save sandeepraju/1f5fbdbdd89551ba7925abe2645f92b5 to your computer and use it in GitHub Desktop.
curl command to check the time to first byte
#!/bin/bash
# file: ttfb.sh
# curl command to check the time to first byte
# ** usage **
# 1. ./ttfb.sh "https://google.com"
# 2. seq 10 | xargs -Iz ./ttfb.sh "https://google.com"
curl -o /dev/null \
-H 'Cache-Control: no-cache' \
-s \
-w "Connect: %{time_connect} TTFB: %{time_starttransfer} Total time: %{time_total} \n" \
$1
@bytebeast

Copy link
Copy Markdown

i also created a python script for this https://github.com/bytebeast/check-endpoint , please check it out.

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