CURL
使用 CURL 工具從客戶端測試請求速,觀察多個指標評估網路效率問題。
請求時間
建立檔案 curl-format.txt 內容如下:
1time_namelookup: %{time_namelookup}\n
2time_connect: %{time_connect}\n
3time_appconnect: %{time_appconnect}\n
4time_pretransfer: %{time_pretransfer}\n
5time_redirect: %{time_redirect}\n
6time_starttransfer: %{time_starttransfer}\n
7----------
8time_total: %{time_total}\n
- time_namelookup(DNS 解析時間):從發起請求到 DNS 解析完成的時間,單位是秒。
- time_connect(連接建立時間):從發起連接請求到建立 TCP 連接完成的時間,單位是秒。
- time_appconnect(應用層連接時間):從發起連接請求到 SSL/TLS 握手完成的時間,單位是秒。如果沒有使用 SSL/TLS,這個時間通常為 0。
- time_pretransfer(預傳輸時間):從發起請求到開始傳輸數據之前的時間,包括 DNS 解析、連接建立、SSL/TLS 握手等時間,單位是秒。
- time_redirect(重定向時間):如果請求中發生了重定向,從開始重定向到最後一個重定向完成的時間,單位是秒。
- time_starttransfer(開始傳輸時間):從發起請求到接收到第一個字節的時間,單位是秒。這表示請求開始接收響應的時間。
- time_total(總時間):從發起請求到接收完整響應的總時間,包括所有的階段,單位是秒。
透過命令查詢請求時間
1# 輸出 format 時間
2➜ curl -w "@curl-format.txt" -o /dev/null -s https://www.bitdegree.org/courses/course/kubernetes-docker-tutorial
3time_namelookup: 0.002607
4time_connect: 0.154302
5time_appconnect: 0.315024
6time_pretransfer: 0.315320
7time_redirect: 0.000000
8time_starttransfer: 2.718007
9----------time_total: 3.364941
1# 直接輸出總時間
2➜ curl -o /dev/null -s -w "Total time: %{time_total}\n" https://www.bitdegree.org/courses/course/kubernetes-docker-tutorial
3Total time: 2.906125