zoukankan      html  css  js  c++  java
  • curl测试网页响应时间

    连接时间:

    curl -s -o /dev/null -w "%{time_connect} " http://www.joinpay.com

    传输时间:

    curl -s -o /dev/null -w "%{time_starttransfer} " http://www.joinpay.com

    总时间:
    curl -s -o /dev/null -w "%{time_total} " http://www.joinpay.com

    curl对网站响应时间监控:
    [root@localhost script]# curl -o /dev/null -s -w "time_connect: %{time_connect} time_starttransfer: %{time_starttransfer} time_total: %{time_total} " "https://www.joinpay.com"
    time_connect: 0.015
    time_starttransfer: 0.394
    time_total: 0.433

  • 相关阅读:
    F
    D
    J
    M
    H
    L
    Android线程之间的通讯
    Java4Android基础学习之异常
    Java4Android基础学习之接口
    Java4Android基础学习之包与访问权限
  • 原文地址:https://www.cnblogs.com/fanxuanhui-linux/p/6242823.html
Copyright © 2011-2022 走看看