gpt4 book ai didi

http请求的每个线程的jmeter唯一ID

转载 作者:行者123 更新时间:2023-12-04 22:30:03 24 4
gpt4 key购买 nike

我的 jmeter 测试发出一个包含唯一 ID 的 http 请求。

http://myserver.com/{uniqueId}/

我想为每个线程设置基数(比如 35000)并递增,例如我的 id 将是 35001、35002、35003 ...
http://myserver.com/{base + count}

我看到了 __threadnum 和 __counter 的函数,但我将如何:
  • 将它设置在一个变量中,以便我可以在我的网址中替换它
  • 将此计数添加到我的基本值
  • 最佳答案

    我会简单地使用 Beanshell 预处理器。

    int threadNo = ctx.getThreadNum()+1; //to get the thread number in beanshell
    int base = 35000;
    int uniqueId = threadNo + base;
    vars.put("uniqueId", Integer.toString(uniqueId));

    现在,下面给出的 HTTP 请求应该替换了该值。

    http://myserver.com/ ${uniqueId}/

    关于http请求的每个线程的jmeter唯一ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31614232/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com