码迷,mamicode.com
首页 > Web开发 > 详细

JMeter3.2生成图形化HTML报告

时间:2017-10-09 15:25:18      阅读:362      评论:0      收藏:0      [点我收藏+]

标签:命令   建议   text   扩展模块   pac   family   bin   thread   str   

JMeter3.0引入了Dashboard Report,用于生成HTML页面格式图形化报告的扩展模块。

该模块支持通过两种方式生成多维度图形化测试报告:

  1. 在JMeter性能测试结束时,自动生成本次测试的HTML图形化报告
  2. 使用一个已有的结果文件(如CSV文件)来生成对应结果的HTML图形化报告

  但是3.0直接生成报告会出现乱码,建议下载3.1之后的版本,我这里下载的是最新的3.2。

如何生成报告?

  从cmd进入执行测试文件,

    • 基本命令格式:
      1
      jmeter -n -t <test JMX file> -l <test log file> -e -o <Path to output folder>
    • 示例:
      技术分享

       

    • 执行完成后会在\apache-jmeter-3.2\bin\output目录下产生如下文件(夹):

    • 技术分享
    • 打开index.html文件,就可以查看各种图形化报告:技术分享

      如果需要从已有的结果文件CSV生成html报告,则需要配置jmeter.properties:

    • jmeter.save.saveservice.bytes = true
      # Only available with HttpClient4
      #jmeter.save.saveservice.sent_bytes=true
      jmeter.save.saveservice.label = true
      jmeter.save.saveservice.latency = true
      jmeter.save.saveservice.response_code = true
      jmeter.save.saveservice.response_message = true
      jmeter.save.saveservice.successful = true
      jmeter.save.saveservice.thread_counts = true
      jmeter.save.saveservice.thread_name = true
      jmeter.save.saveservice.time = true
      jmeter.save.saveservice.connect_time = true
      # the timestamp format must include the time and should include the date.
      # For example the default, which is milliseconds since the epoch: 
      jmeter.save.saveservice.timestamp_format = ms
      # Or the following would also be suitable
      jmeter.save.saveservice.timestamp_format = yyyy/MM/dd HH:mm:ss
      

        如果希望在Errors报告中展示更详细数据,需要确保如下配置

      • 1
        jmeter.save.saveservice.assertion_results_failure_message = true
      • 如果使用了事务控制器(Transaction Controller),确认Generate parent sample为未勾选状态

       使用已有的CSV日志文件生成报告

        • 基本命令格式:
          1
          jmeter -g <log file> -o <Path to output folder>
        • 示例:
          技术分享

           

JMeter3.2生成图形化HTML报告

标签:命令   建议   text   扩展模块   pac   family   bin   thread   str   

原文地址:http://www.cnblogs.com/sunny-sl/p/7641126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!