windows OS 中的 Apache Jmeter 5.4.1 未采用 Concurrency Thread Group 插件

Concurrency Thread Group plugin is not taken in Apache Jmeter 5.4.1 in windows OS

来自https://jmeter-plugins.org/?search=jpgc-casutg

我下载了 Maven 工件:kg.apc:jmeter-plugins-casutg:2.9,它有并发线程组。

  1. 然后我把jmeter-plugins-cmn-jmeter-0.6拷贝到Jmeter的lib文件夹下
  2. 同时将 jmeter-plugins-casutg-2.9 复制到 Jmeter 中的 ext 文件夹中。

然后我重新启动了 Jmeter 并尝试添加线程组,但是并发线程组选项不存在。

您的步骤应该可以正常工作,很可能您在某处犯了错误,这里有一些 Powershell 命令,它们将从头开始安装 JMeter 和自定义线程组包:

  1. Download JMeter

    Invoke-WebRequest -Uri https://archive.apache.org/dist/jmeter/binaries/apache-jmeter-5.4.1.zip -OutFile c:\temp\jmeter.zip
    
  2. 下载自定义线程组插件包

    Invoke-WebRequest -Uri https://jmeter-plugins.org/files/packages/jpgc-casutg-2.9.zip -OutFile c:\temp\custom-thread-groups.zip
    
  3. Unpack JMeter

    Expand-Archive -LiteralPath 'c:\temp\jmeter.zip' -DestinationPath c:\temp
    
  4. 解压插件:

    Expand-Archive -LiteralPath 'c:\temp\custom-thread-groups.zip' -DestinationPath c:\temp
    
  5. Copy the files to necessary locations:

    Copy-Item -Path 'c:\temp\lib' -Destination 'C:\temp\apache-jmeter-5.4.1' -Recurse -Force
    
  6. 启动 JMeter

    C:\temp\apache-jmeter-5.4.1\bin\jmeter.bat
    

自定义线程组应该在那里

P.S。使用 JMeter Plugins Manager 不是更容易吗?