关于php:Go语言-命令行压力测试工具Wrk

30次阅读

共计 723 个字符,预计需要花费 2 分钟才能阅读完成。

下载

git clone https://github.com/wg/wrk

make

sudo cp -R wrk /usr/local/bin/wrk

查看版本号

wrk -v

 应用办法: wrk < 选项 > < 被测 HTTP 服务的 URL>                            
  Options:                                            
    -c, --connections <N>  跟服务器建设并放弃的 TCP 连贯数量  
    -d, --duration    <T>  压测工夫           
    -t, --threads     <N>  应用多少个线程进行压测   
                                                      
    -s, --script      <S>  指定 Lua 脚本门路       
    -H, --header      <H>  为每一个 HTTP 申请增加 HTTP 头      
        --latency          在压测完结后,打印提早统计信息   
        --timeout     <T>  超时工夫     
    -v, --version          打印正在应用的 wrk 的具体版本信息
                                                      
  <N> 代表数字参数,反对国内单位 (1k, 1M, 1G)
  <T> 代表工夫参数,反对工夫单位 (2s, 2m, 2h)

罕用申请形式

wrk -t8 -c200 -d30s –latency “http://www.bing.com”

自定义申请 -s

wrk = {
    scheme  = "http",
    host    = "localhost",
    port    = nil,
    method  = "GET",
    path    = "/",
    headers = {},
    body    = nil,
    thread  = <userdata>
}

列子 先用 postman 测试之后 间接从 post 外面 copy 进去设置

wrk.method = "POST"
wrk.body   = "foo=bar&baz=quux"
wrk.headers["Content-Type"] = "application/x-www-form-urlencoded"

wrk -d3s -c2 -s scripts/post.lua https://httpbin.org/get

正文完
 0