2012-11-27 47 views
2

我正在使用jmeter和maven進行性能測試(REST)。
在我的POM,我有以下插件:使用chronos-report-maven-plugin(Jmeter-Chronos)顯示每個響應結果

  • 克羅諾斯-JMeter的,Maven的插件:執行我的JMX項目
  • 克羅諾斯 - 報告 - Maven的插件:創建報告網站的表現指標

有時,有一些測試失敗,我無法看到服務的響應。有沒有辦法看到報告中的所有請求和回覆?或者失敗的迴應?

回答

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>