gpt4 book ai didi

JMeter。如何判断线程组何时结束

转载 作者:行者123 更新时间:2023-12-05 08:58:06 24 4
gpt4 key购买 nike

我需要运行两个单独的线程组(第二组有无限循环计数)。当第一组完成后,停止第二组。如何确定第一组何时完成?

最佳答案

这对我有用:

  • Crete“BeanShell PreProcessor”代码如下:
    props.put("DONE", "FALSE");
  • 使用以下代码创建“BeanShell 后处理器”:
    int activeThreadCount = org.apache.jmeter.threads.JMeterContextService.getNumberOfThreads();
    if (activeThreadCount <= 1)
    {
    props.put("DONE", "TRUE");
    }

添加 If Controller :
${__BeanShell( props.get("DONE") != null && props.get("DONE")=="TRUE")}

在 If Controller 中停止当前线程。

关于JMeter。如何判断线程组何时结束,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26465338/

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