我需要对以参数作为输入的REST API进行基准测试。我想知道是否有办法使用wrk
来做到这一点。现在我没有看到这样的选择:
user@Ubuntu-K56CA:~/wrk$ ./wrk
Usage: wrk <options> <url>
Options:
-c, --connections <N> Connections to keep open
-d, --duration <T> Duration of test
-t, --threads <N> Number of threads to use
-s, --script <S> Load Lua script file
-H, --header <H> Add header to request
--latency Print latency statistics
--timeout <T> Socket/request timeout
-v, --version Print version details
当我查看此文件时:https://github.com/wg/wrk/blob/master/src/wrk.lua
我没有看到params
在任何地方使用过。另外,在params
repo中对wrk
进行点击也没有产生任何有用的效果。
我错过了什么吗?
答案 0 :(得分:3)
您可以在网址内添加:
./wrk -c1 -t1 -d5s http://server.com/my_path?param_name=param_value
或者如果你想在测试期间生成它,你可以使用脚本来完成它:
./wrk -t1 -c1 -d5s -s ./scripts/my_script.lua http://server.com
其中my_script.lua
是:
request = function()
wrk.headers["Connection"] = "Keep-Alive"
param_value = math.random(1,100)
path = "/my_path?param_name=" .. param_value
return wrk.format("GET", path)
end