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 に答える