jmx 作为 csv 输入和输出文件的 Linux 命令
如果我们想在命令行中提供 CSV 文件输入和 CSV/xl 文件作为输出,语法应该是什么。如果我以下语法有误,请纠正我?
语法:jmeter -n -t /users/test.jmx -l /users/test.csv -l log.csv
If we want to give CSV file input and CSV/xl file as output in command line , what should be the syntax . Correct me if iam wrong with below syntax ?
syntax : jmeter -n -t /users/test.jmx -l /users/test.csv -l log.csv
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不需要这一点:
-l log.csv
-n
- 指示 JMeter 在 命令行非 GUI 模式-t - .jmx 测试脚本
-l
- <的位置a href="https://cwiki.apache.org/confluence/display/JMETER/JtlFiles" rel="nofollow noreferrer">.jtl 结果文件,默认为 CSV 格式并存储根据结果文件配置的指标更多信息:命令行选项的完整列表
You don't need this bit:
-l log.csv
-n
- instructs JMeter to run in command-line non-GUI mode-t
- location of the .jmx test script-l
- location of the .jtl results file, by default it is in CSV format and stores metrics according to the Results File ConfigurationMore information: Full list of command-line options