Linux 使用Curl命令查看 http 请求各阶段响应时间

Linux 使用Curl命令查看 http 请求各阶段响应时间

访问慢,首先我们自己要先访问,看访问过程花费时间

$ curl -o /dev/null -s -w "time_namelookup:%{time_namelookup}\ntime_connect: %{time_connect}\ntime_starttransfer: %{time_starttransfer}\ntime_total: %{time_total}\n"  "http://ad.test.com/ad/?nww=22118&ive=17933&er=958"

响应结果

time_namelookup:0.004
time_connect: 0.252
time_starttransfer: 0.561
time_total: 0.561

参数说明:

time_namelookup:    #DNS 服务器域名解析的时间(以上时间单位都是s) 
time_connect:       #client 发出请求,到 c/s 建立TCP 的时间;里面包括 DNS 解析的时间
time_starttransfer: #client 发出请求;到 server 响应发出第一个字节开始的时间;包括前面的2个时间 
time_total:         #从请求发起到链接关闭的总耗时
posted @ 2023-06-30 15:02  智杰  阅读(580)  评论(0编辑  收藏  举报
marquee
当你的才华还撑不起你的野心的时候,你就应该静下心来学习。当你的能力还驾驭不了你的目标的时候,你就应该沉下心来历练。问问自己,想要怎样的人生