如何使用autobench发送http会话cookie

时间:2013-03-13 03:07:01

标签: http benchmarking load-testing httperf

如何在autobench中设置会话cookie,以便对可能需要会话身份验证的URL进行基准测试?

1 个答案:

答案 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。