美文网首页
Jmeter 3.0 生成图表报告(一)

Jmeter 3.0 生成图表报告(一)

作者: 风灬落 | 来源:发表于2016-06-12 17:55 被阅读0次

1. 编辑bin目录下的user.properties文件,配置报告设置如下:

#---------------------------------------------------------------------------

# Reporting configuration

#---------------------------------------------------------------------------

# If you want to debug reporting, uncomment this line

log_level.jmeter.report=DEBUG

# Configure this property to change the report title

jmeter.reportgenerator.report_title=Apache JMeter Dashboard

# Change this parameter if you want to change the granularity of over time graphs.

jmeter.reportgenerator.overall_granularity=60000

# Change this parameter if you want to change the granularity of Response time distribution

# Set to 500 ms by default

jmeter.reportgenerator.graph.responseTimeDistribution.property.set_granularity=500

# Change this parameter if you want to keep only some samples.

# Regular Expression which Indicates which samples to keep for graphs and statistics generation.

# Empty value means no filtering

jmeter.reportgenerator.sample_filter=

# Change this parameter if you want to override the APDEX satisfaction threshold.

jmeter.reportgenerator.apdex_satisfied_threshold=500

# Change this parameter if you want to override the APDEX tolerance threshold.

jmeter.reportgenerator.apdex_tolerated_threshold=1500

# Indicates which graph series are filtered (regular expression)

# In the below example we filter on Search and Order samples

# Note that the end of the pattern should always include (-success|-failure)?

# TransactionsPerSecondGraphConsumer suffixes transactions with "-success" or "-failure" depending

# on the result

jmeter.reportgenerator.exporter.html.series_filter=(Search|Order)(-success|-failure)?

# Indicates whether only controller samples are displayed on graphs that support it.

jmeter.reportgenerator.exporter.html.show_controllers_only=false

# Sets the destination directory for generated html pages, it is better to change it for every generation

# This will override the value set through -o command line option

jmeter.reportgenerator.exporter.html.property.output_dir=/tmp/test-report

2.在 cmd里执行如下命令:

相关文章

  • Jmeter 3.0 生成图表报告(一)

    1. 编辑bin目录下的user.properties文件,配置报告设置如下: #----------------...

  • Jmeter自动生成html报告

    从JMeter 3.0开始已支持自动生成动态报告,我们可以更容易根据生成的报告来完成我们的性能测试报告。 如何生成...

  • Jmeter生成HTML报告

    如何利用Jmeter生成html测试报告?其实3.0以后就已经支持。 如果未生成结果文件(.jtl),可运行如下命...

  • jmeter+jenkins集成

    设计思路: 通过jenkins调度jmeter执行脚本,生成html报告或图表,并发送邮件通知 前提: jenki...

  • Jmeter-多维度的图形化HTML报告

    前言 JMeter3.0提供一个用于生成HTML页面格式图形化报告的扩展模块。该模块支持通过两种方式生成多维度图形...

  • 【python3-1】读取jmeter报告内容

    jmeter生成报告结果 由于jmeter生成报告的方式是内部引用变量,无法从某个节点取到对应数值,只能通过读取报...

  • Jmeter压力测试

    Jmeter压力测试,http sampler Jmeter生成html报告方法: https://www.jia...

  • JMeter3.0图形化HTML报告中文乱码问题处理

    之前在博客中介绍了JMeter 3.0版本新特性:Dashboard Report,用于为JMeter测试结果生成...

  • jmeter使用笔记

    jmeter使用笔记 生成测试报告(类似LR的测试报告) jmeter.bat -n -t 线程组.jmx -l ...

  • jemter-自定义测试报告

    场景:自动化生成接口性能报告jmeter官网效果:http://jmeter.apache.org/userman...

网友评论

      本文标题:Jmeter 3.0 生成图表报告(一)

      本文链接:https://www.haomeiwen.com/subject/ywnedttx.html