使用httpstat測試網站響應時間

周小董發表於2019-01-30

httpstat是用Python寫的指令碼,可以用來測試http伺服器的迴應速度。 httpstat本質上就是封裝了cURL工具,所以它可以接受各種 cURL的選項。(-w、-D、-o、-s與-S除外,因為這些已經被 httpstat使用了)

安裝httpstat

下載指令碼:

$ wget -c https://raw.githubusercontent.com/reorx/httpstat/master/httpstat.py

或使用pip安裝:

pip install httpstat

使用httpstat測試網站響應時間

$ python httpstat.py blog.topspeedsnail.com
# 或
$ httpstat blog.topspeedsnail.com

輸出:
image.png

從上圖輸出我們就可以大約看出網站在哪個環節耗時最多。

更多資訊,檢視幫助:

$ man curl
$ python httpstat.py -h

來源:http://blog.topspeedsnail.com/archives/10732#more-10732

相關文章