2

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

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

有时,有一些测试失败,我无法看到服务的响应是什么。有什么方法可以查看报告中的所有请求和响应?还是失败的回应?

4

1 回答 1

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>
于 2012-12-07T02:03:45.133 回答