1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 23:02:07 +02:00
tldr/pages/common/jmeter.md
André Santos c84a1a7ecc
jmeter: add page (#8391)
* jmeter: add page

* Rename jmeter.md to pages/common/jmeter.md

* Replaced hyphens with "greater than" signs

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* Removed trailing backspace

* Using long options and improving variables

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>
Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>

* Providing concrete examples for proxyhost and port

* Update pages/common/jmeter.md

Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>

* Refactored commands description

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>

* Refactored commands description

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Emily Grace Seville <emilyseville7cf@gmail.com>
Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
2022-08-25 01:41:48 +10:00

20 lines
713 B
Markdown

# jmeter
> Open source java application designed for load testing functional behavior and measure performance.
> More information: <https://jmeter.apache.org>.
- Run a specific test plan in nongui mode:
`jmeter --nongui --testfile {{path/to/file}}.jmx`
- Run a test plan in nongui mode using a specific log file:
`jmeter --nogui --testfile {{path/to/file}}.jmx --logfile {{path/to/logfile}}.jtl`
- Run a test plan in nongui mode using a specific proxy:
`jmeter --nongui --testfile {{path/to/file}}.jmx --proxyHost {{127.0.0.1}} --proxyPort {{8888}}`
- Run a test plan in nongui mode using a specific JMeter property:
`jmeter --jmeterproperty {{key}}='{{value}}' --nongui --testfile {{path/to/file}}.jmx`