From c84a1a7eccf13d487655df245d8997b086c07539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santos?= <103038983+andre-santos-fd@users.noreply.github.com> Date: Wed, 24 Aug 2022 16:41:48 +0100 Subject: [PATCH] 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 * Removed trailing backspace * Using long options and improving variables Co-authored-by: Emily Grace Seville 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 * Refactored commands description Co-authored-by: Axel Navarro * Refactored commands description Co-authored-by: Axel Navarro Co-authored-by: K.B.Dharun Krishna Co-authored-by: Emily Grace Seville Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Co-authored-by: Axel Navarro --- pages/common/jmeter.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/jmeter.md diff --git a/pages/common/jmeter.md b/pages/common/jmeter.md new file mode 100644 index 000000000..353cf02a3 --- /dev/null +++ b/pages/common/jmeter.md @@ -0,0 +1,20 @@ +# jmeter + +> Open source java application designed for load testing functional behavior and measure performance. +> More information: . + +- 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`