我使用该插件JMeter的分析,Maven的插件在Maven中进行一些性能测试分析(生成图表详细报告),我已经配置了插件的输入是所有JTL文件,但在运行后,我说,它处理只有一个文件(按字母顺序的第一个),在这里POM文件我的插件配置后:
<plugin>
<groupId>com.lazerycode.jmeter</groupId>
<artifactId>jmeter-analysis-maven-plugin</artifactId>
<executions>
<execution>
<id>thread</id>
<phase>install</phase>
<goals>
<goal>analyze</goal>
</goals>
<configuration>
<source>${project.build.directory}/**/*.jtl</source>
<targetDirectory>${project.build.directory}/jmeter/test_report</targetDirectory>
</configuration>
</execution>
</executions>
</plugin>
你的想法,欢迎...感谢很多提前!