wrk HTTP 压力测试

目录

      • wrk
      • 安装
      • 命令
      • 例子
      • 结果

wrk

GitHub

安装

安装

命令

Usage: wrk  
  Options:
    -c, --connections   Connections to keep open
    -d, --duration      Duration of test
    -t, --threads       Number of threads to use

    -s, --script        Load Lua script file
    -H, --header        Add header to request
        --latency          Print latency statistics
        --timeout       Socket/request timeout
    -v, --version          Print version details

  Numeric arguments may include a SI unit (1k, 1M, 1G)
  Time arguments may include a time unit (2s, 2m, 2h)

例子

wrk -c 1000 -t 10 -d 100s  http://localhost:8080/shop

结果

wrk HTTP 压力测试_第1张图片

你可能感兴趣的:(工作笔记)