制作摘要报告Jmeter输出以CSV格式显示在表格中

时间:2013-01-02 06:59:41

标签: testing jmeter load-testing stress-testing

用于存储Jmeter摘要报告结果的文件名应该(据我所知)存储我在屏幕上看到的相同信息。但它会存储发送的HTTP请求的简短响应,如下所示:

<httpSample t="72" lt="66" ts="1305479685437" s="true" lb="login" rc="200" rm="OK" tn="Virtual users 1-1" dt="text" by="12978">

我将文件名定义为.csv文件

知道如何将其变成屏幕摘要报告的副本(样本,平均值,最小值,最大值,标准数据等)?

get this report

3 个答案:

答案 0 :(得分:2)

要制作JMeter输出的摘要报告,您需要执行以下操作:

确保在 jmeter.properties 文件中的&#39;结果文件配置&#39;不在评论中,您要使用的所有字段都标记为true,如下所示。

<pre><code>
    #---------------------------------------------------------------------------
    # Results file configuration
    #---------------------------------------------------------------------------

    # This section helps determine how result data will be saved.
    # The commented out values are the defaults.

    # legitimate values: xml, csv, db.  Only xml and csv are currently supported.
    jmeter.save.saveservice.output_format=csv


    # true when field should be saved; false otherwise

    # assertion_results_failure_message only affects CSV output
    #jmeter.save.saveservice.assertion_results_failure_message=false
    #
    # legitimate values: none, first, all
    #jmeter.save.saveservice.assertion_results=none
    #
    jmeter.save.saveservice.data_type=false
    jmeter.save.saveservice.label=true
    jmeter.save.saveservice.response_code=true
</code></pre>

然后点击配置按钮配置摘要报告。 enter image description here

答案 1 :(得分:1)

Jp @ gc具有用于将jmeter报告导出到csv的命令行工具。将保存的jtl文件导入其中并使用聚合报告模式。 看到。 JMeterPluginsCMD Command Line Tool docs寻求帮助

答案 2 :(得分:0)

如果您想将其转换为屏幕摘要报告的副本(样本,平均值,最小值,最大值,标准数据等),只需单击保存表数据按钮,然后将其保存为.csv格式。

enter image description here

你会得到这样的.csv文件:

enter image description here