~kris/dots

srice

ref: 178c9a25a484ead715392d50e21d03df486b8b41 srice/.local/bin/httptime -rwxr-xr-x 439 bytes
178c9a25 — Kris Yotam conky: sync proper config from moirai (was the greenred variant) 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
# httptime -- show HTTP response timing breakdown
set -eu

if [ -z "${1:-}" ]; then
    echo "Usage: httptime <url>" >&2
    exit 1
fi

curl -o /dev/null -s -w "
  DNS:        %{time_namelookup}s
  Connect:    %{time_connect}s
  TLS:        %{time_appconnect}s
  TTFB:       %{time_starttransfer}s
  Total:      %{time_total}s
  Size:       %{size_download} bytes
  Status:     %{http_code}
  Redirects:  %{num_redirects}
" "$1"