如何为每次运行生成单独的.jtl结果文件。下面是我使用jenkins作业(性能趋势插件)运行的命令。
cd /Apache-j抄-2.13/bin ./jmeter.sh -n -t /jmxFiles/Jbpm6Rest3Jenkins1.jmx -l /jmxFiles/SIP.jtl -JUSERS=${USER_COUNT} -JRampUp=${LOOP_COUNT}{LOOP_COUNT}
当前,SIP.jtl文件在每次运行时都会追加相同的文件。
如何为每次运行生成单独的.jtl结果文件(SIP1、SIP2、SIP3等),并在Jenkins性能趋势中显示。
发布于 2016-03-01 08:29:02
you just need to add time function just after or before your JTL file name示例:-Example -n -t Test_Plan.jmx -l LOG_${__time(yy HH-mm-SS-SS)}.jtl

https://stackoverflow.com/questions/35716559
复制相似问题