Apache JMeter 4-我可以获得负载测试的文本摘要吗?

时间:2019-02-15 19:23:25

标签: jmeter jmeter-4.0

我正在寻找一种在负载测试结束时生成文本摘要的方法,该方法类似于GUI所显示的内容,但是在无头运行时。我正在寻找盒子附近的信息。有没有办法做到这一点?

编辑:我看到屏幕底部有一个“ prompt_toolkit”按钮,该按钮保存的文件与我要查找的文件完全相同。但是我正在寻找如何以无头模式进行操作。

enter image description here

2 个答案:

答案 0 :(得分:2)

这就是我要做的以得到想要的东西,在几个不同的地方找到了零件,这就是您需要做的。请注意,我是通过zip文件安装插件的。

插件-将它们解压缩到安装了JMeter的顶级目录中
jpgc-cmd-2.2.zip
jpgc-synthesis-2.2.zip
jpgc-filterresults-2.2.zip

在运行期间生成jtl文件
/ path / to / bin / jmeter -n -t /path/to/TestPlan.jmx -l /path/to/output.jtl

生成csv文件
/path/to/bin/JMeterPluginsCMD.sh --tool Reporter --generate-csv“ /path/to/Aggregate_Report.csv” --input-jtl“ /path/to/output.jtl”-插件类型的AggregateReport

答案 1 :(得分:2)

  1. 为什么不使用HTML Reporting Dashboard?您可以像这样运行测试:

    jmeter -n -t test.jmx -l result.jtl -e -o report
    

    测试完成后,您将可以使用自己喜欢的网络浏览器打开index.html文件夹下的report文件,并享受测试摘要和图表

    enter image description here

  2. JMeterPluginsCMD Command Line Tool,它能够从.jtl结果文件中生成表和图表。您可以使用JMeter Plugins Manager

  3. 安装命令行图绘图工具
  4. According to JMeter Best Practices you should always be using the latest version of JMeter,因此请考虑在下一个可用机会升级到JMeter 5.0(或JMeter Downloads页上可用的最新版本)