如何在多个结果文件上运行jmeter-analysis-maven-plugin

时间:2015-08-07 14:18:24

标签: maven-2 jmeter

我在maven中使用插件jmeter-analysis-maven-plugin执行一些性能测试分析(使用图表生成详细报告),我已将插件配置为将所有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>

欢迎您的想法......非常感谢!

1 个答案:

答案 0 :(得分:1)

好的,我已经找到了如何做到这一点,实际上它足以添加属性&#34; processAllFilesFound&#34;到插件配置:

MyStruct *