如何在autobench中设置会话cookie,以便对可能需要会话身份验证的URL进行基准测试?
答案 0 :(得分:1)
我到处寻找这个。找到它here:
在.autobench.conf文件中,添加以下行:
## Add a session cookie
# NOTE: You must put the '\n' at the end of the cookie string or it will timeout.
httperf_add-header = "Cookie: cookie_name_here=asdf_cookie_string_here_\n"
请注意,这与使用httperf的'--session-cookie'和'--wsess = N1,N2,X'参数不同。在执行上述操作时,他们不需要在标题中使用cookie。