我正在尝试对代理服务器进行负载测试。我知道我需要在TSUNG配置文件中添加以下命令:
option type="ts_http" name="http_use_server_as_proxy" value="true"但是,我不确定应该在xml配置文件中的什么位置输入此选项。
任何对代理服务器进行负载测试的TSUNG配置文件的示例都会非常有帮助。
发布于 2015-03-05 18:09:48
您可以在xml中之前使用此选项:
.......
<options>
<option name="exampleName" id='exampleID' value="path to csv>
<option type="ts_http" name="http_use_server_as_proxy" value="true">
......
</option>
</options>
<sessions>
<session name="example" probability="100" type="ts_http">
......
</sessions>
......您还可以阅读示例,那里有-> https://github.com/processone/tsung/tree/master/examples
https://stackoverflow.com/questions/25811549
复制相似问题