我正在尝试使用jmeter通过Jenkins运行稳健性测试,并且需要查看正在进行的测试的摘要。当使用GUI模式在本地运行测试时,我可以看到我的测试正在运行的agregate报告,在我以非常模式运行时可能是同样的事情吗?我试图更改属性文件中的摘要生成器:
**#----------------------------------------------------------
# Summariser - Generate Summary Results - configuration (mainly applies to non-GUI mode)
#----------------------------------------------------------
# Define the following property to automatically start a summariser with that name
# (applies to non-GUI mode only)
summariser.name=summary
#
# interval between summaries (in seconds) default 3 minutes
summariser.interval=180
#
# Write messages to log file
summariser.log=true
#
# Write messages to System.out
summariser.out=true**
并且还启用了日志记录信息,但我仍然没有看到任何摘要。即使我可以在stdout中获得一个常量记录器,然后我可以在Jenkins的控制台输出中至少查看这个,但是目前我无法生成这个。有谁知道如何配置?
答案 0 :(得分:1)
使用JMeter 2.11,默认情况下在非GUI模式下启用摘要生成器,因此您应该拥有所需的内容。
虽然你所展示的内容似乎正确,但是:
summariser.out =真**
应该是:
summariser.out =真
答案 1 :(得分:0)
控制台状态记录器插件可以解决您的任务。见这里:http://jmeter-plugins.org/wiki/ConsoleStatusLogger/