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>
pull/1/head
André Santos 2022-08-24 16:41:48 +01:00 committed by GitHub
parent 9e0bcb0ced
commit c84a1a7ecc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/common/jmeter.md Normal file
View File

@ -0,0 +1,20 @@
# 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`