是否有任何预定义文件来定义 jmeter 的变量?
我的项目中已经有 jmeter 配置。我可以看到一些已经定义的变量,例如 ThreadGroup 中用户数量的“${__P(threads)}”。还有许多其他类似的变量。我正在检查这些是在哪里定义的?我检查了 jmeter.properties、user.properties 和 system.properties。
我尝试检查 http://jmeter.apache.org/usermanual/functions.html定义的位置。但是,我找不到任何帮助。
是否有任何预定义文件来定义 jmeter 的变量?
提前致谢。
I already have a jmeter configuration in my project. I can see a few variables already defined like "${__P(threads)}" for the number of users in ThreadGroup. There are many other variables like these. I am checking where these are defined? I checked in jmeter.properties, user.properties and system.properties.
I tried checking http://jmeter.apache.org/usermanual/functions.html for the location of definition. But, I couldn't find any help.
Is there any pre-defined file to define the variables for jmeter?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
人们经常使用 ${__P(threads)} 将命令行参数传递给测试计划。您可以使用命令行启动jmeter,例如
这允许您使用不同数量的线程运行jmeter,而无需在GUI中修改测试计划。
People frequently use ${__P(threads)} for passing command-line parameters to test plan. You may start jmeter with command line like
This allows you running jmeter with different number of threads without modifying test plan in GUI.