'linux command for jmx as csv Input and Output file
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
Solution 1:[1]
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 Configuration
More information: Full list of command-line options
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Dmitri T |
