如何将不同数量的线程设置到不同的线程组?
How to set a different number of threads to a different thread group?
这是我的 YAML 配置
execution:
- scenario:
script: test.jmx
concurrency: 3
iterations: 1
ramp-up: 1
reporting:
- module: junit-xml
filename: taurus-output/TEST-Taurus.xml
我的 JMeter 测试中有 2 个线程组(以 A、B 为例),我想 运行 测试 A 的 10 个线程和 B 的 5 个线程。
删除此 concurrency
行或将其设置为 15
。
根据Run Existing JMX File you need to only provide the pass to JMeter .jmx script and not going to perform any modifications,这就足够了。
这是我的 YAML 配置
execution:
- scenario:
script: test.jmx
concurrency: 3
iterations: 1
ramp-up: 1
reporting:
- module: junit-xml
filename: taurus-output/TEST-Taurus.xml
我的 JMeter 测试中有 2 个线程组(以 A、B 为例),我想 运行 测试 A 的 10 个线程和 B 的 5 个线程。
删除此 concurrency
行或将其设置为 15
。
根据Run Existing JMX File you need to only provide the pass to JMeter .jmx script and not going to perform any modifications,这就足够了。