美文网首页
hey接口压测工具

hey接口压测工具

作者: wowshiwoniu | 来源:发表于2020-07-23 14:51 被阅读0次

    安装

    ubuntu 安装

    sudo apt update
    sudo apt install snapd
    sudo snap install hey
    

    mac安装

    brew install hey
    

    查看帮助

    ➜  ~ hey -h
    flag needs an argument: -h
    Usage: hey [options...] <url>
    
    Options:
      -n  Number of requests to run. Default is 200.
      -c  Number of workers to run concurrently. Total number of requests cannot
          be smaller than the concurrency level. Default is 50.
      -q  Rate limit, in queries per second (QPS) per worker. Default is no rate limit.
      -z  Duration of application to send requests. When duration is reached,
          application stops and exits. If duration is specified, n is ignored.
          Examples: -z 10s -z 3m.
      -o  Output type. If none provided, a summary is printed.
          "csv" is the only supported alternative. Dumps the response
          metrics in comma-separated values format.
    
      -m  HTTP method, one of GET, POST, PUT, DELETE, HEAD, OPTIONS.
      -H  Custom HTTP header. You can specify as many as needed by repeating the flag.
          For example, -H "Accept: text/html" -H "Content-Type: application/xml" .
      -t  Timeout for each request in seconds. Default is 20, use 0 for infinite.
      -A  HTTP Accept header.
      -d  HTTP request body.
      -D  HTTP request body from file. For example, /home/user/file.txt or ./file.txt.
      -T  Content-type, defaults to "text/html".
      -a  Basic authentication, username:password.
      -x  HTTP Proxy address as host:port.
      -h2 Enable HTTP/2.
    
      -host HTTP Host header.
    
      -disable-compression  Disable compression.
      -disable-keepalive    Disable keep-alive, prevents re-use of TCP
                            connections between different HTTP requests.
      -disable-redirects    Disable following of HTTP redirects
      -cpus                 Number of used cpu cores.
                            (default for current machine is 12 cores)
    

    简单实用

    1. get请求,指定2s时间内,并发为1000
      hey -z 2s -c 1000 http://www.httpbin.org

    2. get请求,运行1000次,指定并发为100
      hey -n 1000 -c 100 http://www.httpbin.org

    3. post请求
      hey -z 2s -c 100 -m POST -H "Content-Type: application/json" -d "{'name': '张三'}" http://www.httpbin.org

    相关文章

      网友评论

          本文标题:hey接口压测工具

          本文链接:https://www.haomeiwen.com/subject/wachlktx.html