我已经在非GUI模式下运行了测试计划,它成功运行了,但是我在指定的目录中找不到html报告。仅存在csv文件结果。
C:\Users\SamsonOluwashola\Documents\apache-jmeter-5.0\bin>jmeter -n -t C:\Users\SamsonOluwashola\Documents\apache-jmeter-5.0\bin\creditLimitOp1.jmx -l C:\Users\SamsonOluwashola\Documents\apache-jmeter-5.0\bin\reportHTML\ccrditlimit.csv -e -o C:\Users\SamsonOluwashola\Documents\apache-jmeter-5.0\bin\reportHTML\creditLimit.html
Creating summariser <summary>
Created the tree successfully using C:\Users\SamsonOluwashola\Documents\apache-jmeter-5.0\bin\creditLimitOp1.jmx
Starting the test @ Thu Oct 18 09:34:37 BST 2018 (1539851677846)
Waiting for possible Shutdown/StopTestNow/Heapdump message on port 4445
summary + 200 in 00:00:22 = 9.0/s Avg: 2019 Min: 0 Max: 5627 Err: 0 (0.00%) Active: 33 Started: 41 Finished: 8
summary + 203 in 00:00:16 = 12.5/s Avg: 2054 Min: 0 Max: 6348 Err: 0 (0.00%) Active: 0 Started: 41 Finished: 41
summary = 403 in 00:00:38 = 10.5/s Avg: 2036 Min: 0 Max: 6348 Err: 0 (0.00%)
Tidying up ... @ Thu Oct 18 09:35:16 BST 2018 (1539851716518)
... end of run
答案 0 :(得分:1)
JMeter Dashboard's -o parameter获得一个文件夹值,而不是文件(HTML)。
jmeter -n -t测试JMX文件-l测试日志文件-e -o 输出文件夹的路径
将执行更改为.. -o C:\Users\SamsonOluwashola\Documents\apache-jmeter-5.0\bin\reportHTML
答案 1 :(得分:0)
JMeter 无法在非空文件夹中生成HTML报告,请考虑将.jtl文件存储在一个位置,将仪表板存储在另一个位置。一旦仪表板生成完成,就可以copy {j3}文件来报告文件夹。
还考虑添加-f
argument to your command line,以便JMeter覆盖结果文件(如果存在的话)(这可能是导致问题的另一个原因)
最终的命令行类似于:
jmeter -n -t -f C:\Users\Documents\apache-jmeter-5.0\bin\creditLimitOp1.jmx -l C:\Users\Documents\apache-jmeter-5.0\bin\crdlimit.csv -e -o C:\Users\Documents\apache-jmeter-5.0\bin\report && copy C:\Users\Documents\apache-jmeter-5.0\bin\crdlimit.csv C:\Users\Documents\apache-jmeter-5.0\bin\report
在精美的HTML版本中查看测试结果的另一种方法是使用BM.Sense服务