如何修复 JMeter 中的请求数量
我需要通过增加线程来测试固定数量请求的服务性能。所以,举例来说,- 我需要用4个线程发送2000个请求,一旦发送了2000个请求,那么 用8个线程发送2000个请求,然后 使用 12 个线程发送 2000 个请求。
这意味着,只有在完成 2000 个请求后才应进行升级。
在 JMeter 中如何做到这一点? 任何帮助将不胜感激。
I need to test performance of service with fixed number of requests with increasing threads. So, for example, -
I need to send 2000 requests with 4 threads, once 2000 requests are sent, then
send 2000 requests with 8 threads, then
send 2000 requests with 12 threads.
Meaning, step up should be done only after completing 2000 requests.
How can this be done in JMeter?
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JMeter 的 测试元素 都不支持您要设置的配置。
最简单的方法是使用 __P() 函数 设置线程数,如下所示:
完成后,您将能够在非 GUI 模式下运行 JMeter 例如:
等等
。
如果你想将所有结果放入一个文件中,你可以使用 合并结果插件
None of JMeter's test elements supports the configuration you want to setup.
The easiest would be setting the number of threads using __P() function like:
once done you will be able to run JMeter in non-GUI mode like:
and
etc.
If you want to put all the results into a single file you can use Merge Results plugin