I would like to run multiple samplers with different frequencies. For example in a test plan I have two samplers A and B and I want to 80% of threads run sampler A and 20% of threads run sampler B. How can I configure this situation instead of running all thread on all samplers?
问问题
1427 次
1 回答
1
快速而肮脏的方法是使用交错控制器并添加采样器 A 4 次和采样器 B 1 次。但是,那是非常非常肮脏的。
更好的方法是使用Switch Controller。然后,您可以根据可以在测试和线程基础上设置和更改的变量来执行采样器 A 或 B。(初始化每个测试并更改每个线程。)
您需要的变量可以在 Config Elements 下找到并命名为Counter。
于 2013-06-26T08:57:41.173 回答