Difference between revisions of "Apache JMeter"
Jump to navigation
Jump to search
(Created page with "= Run Jmeter in Non-GUI mode = jmeter -n -t YourJmeterTestPlan.jmx -l TestResultFile.jtl -j LogFile.log where, *-n – Non-GUI mode – This specifies JMeter is to run in...") |
|||
Line 11: | Line 11: | ||
After running this command, Jmeter instance will be initiated which will execute the JMX file mentioned after -t. Post execution it will create the Test result file with .jtl format. If a result file with same name already exist, it will be appended with new one. | After running this command, Jmeter instance will be initiated which will execute the JMX file mentioned after -t. Post execution it will create the Test result file with .jtl format. If a result file with same name already exist, it will be appended with new one. | ||
*[http://www.testautomationguru.com/jmeter-real-time-results-influxdb-grafana-part-2-adding-custom-fields/ www.testautomationguru.com] |
Revision as of 06:02, 23 May 2018
Run Jmeter in Non-GUI mode
jmeter -n -t YourJmeterTestPlan.jmx -l TestResultFile.jtl -j LogFile.log
where,
- -n – Non-GUI mode – This specifies JMeter is to run in non-gui mode
- -t – Name of JMX file that contains Test Plan
- -l – Name of JTL file to capture results to
- -j – Name of Log file to capture execution logs
After running this command, Jmeter instance will be initiated which will execute the JMX file mentioned after -t. Post execution it will create the Test result file with .jtl format. If a result file with same name already exist, it will be appended with new one.