简体   繁体   English

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

[英]Show each response result using chronos-report-maven-plugin (Jmeter - Chronos)

I'm working with performance testing (REST), using jmeter and maven. 我正在使用jmeter和maven进行性能测试(REST)。
In my pom, I have the following plugins: 在pom中,我具有以下插件:

  • chronos-jmeter-maven-plugin: to execute my jmx project chronos-jmeter-maven-plugin:执行我的jmx项目
  • chronos-report-maven-plugin: to create the report site with the performance metrics chronos-report-maven-plugin:使用性能指标创建报告站点

Sometimes, there are some tests failures and I'm not able to see what was the response of the service. 有时,有些测试失败,而我看不到该服务的响应。 Is there any way to see all the requests and responses in the report? 有什么办法可以查看报告中的所有请求和响应? Or the failed responses? 还是失败的回应?

The configuration section should allow you to enable responses and additional details. 配置部分应允许您启用响应和其他详细信息。 Try true and true. 尽力而为。 Could you include your config section of the plugin in your pom file? 您可以在pom文件中包含插件的config部分吗?

                            <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>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM