如何运行JMeter的分析,Maven的插件上的多个结果文件(How to run jmeter-a

2019-10-24 16:35发布

我使用该插件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>

你的想法,欢迎...感谢很多提前!

Answer 1:

好吧,我已经找到了如何做到这一点,的确是够属性“processAllFilesFound”添加到插件配置:

<configuration>
  <source>${project.build.directory}/**/*.jtl</source>
  <targetDirectory>${project.build.directory}/jmeter/test_report</targetDirectory>
  <processAllFilesFound>true</processAllFilesFound>
</configuration>


文章来源: How to run jmeter-analysis-maven-plugin on multiple result files