英文:
Add unique runid to .jtl file for every Jmeter run
问题
在.Jtl结果中,我可以看到一个列被添加,列名为build_number的值,而列值为空。
英文:
I am running below jmeter command using power shell
$runid =$build_number
jmeter -Jsample_variables=$runid -n -t test.jmx -l result.jtl
In the .Jtl result , I could see column added with build_number value as column name and column values are empty.
答案1
得分: 1
以下是翻译好的部分:
你声明了示例变量,但没有为其分配任何值。
-
在你的测试计划中添加用户定义的变量配置元素,并在那里使用
${__P(runid,)}
函数定义runid
变量的值: -
修改你的JMeter启动命令为:
jmeter -Jsample_variables=runid -Jrunid=123456 -n -t test.jmx -l result.jtl
-
就这样,一旦测试完成,你应该能够看到带有适当值的
runid
列:
英文:
You declare the Sample Variable but not assigning any value to it
-
Add User Defined Variables configuration element to your test plan and define
runid
variable there using${__P(runid,)}
function as the value: -
Amend your JMeter startup command as:
jmeter -Jsample_variables=runid -Jrunid=123456 -n -t test.jmx -l result.jtl
-
That's it, once test finishes you should be able to see the
runid
column with the appropriate value:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论