使用chronos-report-maven-plugin(Jmeter - Chronos)显示每个响应结果

时间:2012-11-27 19:33:56

标签: java maven jmeter

我正在使用jmeter和maven进行性能测试(REST) 在我的pom中,我有以下插件:

  • chronos-jmeter-maven-plugin:执行我的jmx项目
  • chronos-report-maven-plugin:使用效果指标创建报告网站

有时,有一些测试失败,我无法看到服务的响应是什么。有没有办法查看报告中的所有请求和响应?或者失败的回复?

1 个答案:

答案 0 :(得分:0)

配置部分应该允许您启用响应和其他详细信息。尝试真实和真实。你可以在pom文件中包含插件的配置部分吗?

                            <configuration>
                                <description>This is the description of the generated report</description>
                                <title>Report title</title>
                                <showaverage>false</showaverage>
                                <showpercentile>false</showpercentile>
                                <showinfotable>false</showinfotable>
                                <showtimeinfo>false</showtimeinfo>
                                <showsummary>true</showsummary>
                                <showdetails>false</showdetails>
                                <showresponse>true</showresponse>
                                <showhistogram>true</showhistogram>
                                <showthroughput>false</showthroughput>
                                <showgc>false</showgc>
                            </configuration>