如何修复 JMeter 中的请求数量

发布于 2025-01-11 00:05:21 字数 186 浏览 0 评论 0原文

我需要通过增加线程来测试固定数量请求的服务性能。所以,举例来说,- 我需要用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怪我太投入 2025-01-18 00:05:22

JMeter 的 测试元素 都不支持您要设置的配置。

最简单的方法是使用 __P() 函数 设置线程数,如下所示:

输入图片此处描述

完成后,您将能够在非 GUI 模式下运行 JMeter 例如:

jmeter -Jthreads=4 -n -t testplan.jmx -l 4-threads.jtl

等等

jmeter -Jthreads=8 -n -t testplan.jmx -l 8-threads.jtl

如果你想将所有结果放入一个文件中,你可以使用 合并结果插件

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:

enter image description here

once done you will be able to run JMeter in non-GUI mode like:

jmeter -Jthreads=4 -n -t testplan.jmx -l 4-threads.jtl

and

jmeter -Jthreads=8 -n -t testplan.jmx -l 8-threads.jtl

etc.

If you want to put all the results into a single file you can use Merge Results plugin

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文