diff --git a/docs/debuging.md b/docs/debuging.md new file mode 100644 index 00000000..8137e85e --- /dev/null +++ b/docs/debuging.md @@ -0,0 +1,32 @@ +# Debuging + +This guide helps you debug KLoadGen in plugin mode with an IDE. + +## Using IntelliJ IDEA + +- Create a remote JVM configuration, should look like this: + +![debug-configuration.png](images%2Fdebug-configuration.png) + +- Now copy the Command line argument. + +## - Windows + +Open the file: `apache-jmeter-\bin\jmeter.bat` whit any editor and paste the command on this 2 lines: + +![debug-jmeter-bat.png](images%2Fdebug-jmeter-bat.png) + + +## - MacOS + +Open the file: `apache-jmeter-\bin\jmeter.sh` whit any editor and paste the command on this line: + +![debug-jmeter-sh.png](images%2Fdebug-jmeter-sh.png) + + +## While Debuging + +Now you can debug while you ejecute Jmeter. + +Remember to create a new `kloadgen-.jar` file and move it to Jmeter files, to apply +the changes you made in the code. \ No newline at end of file diff --git a/docs/getting-started.md b/docs/getting-started.md index 316a2b9a..02f5bdaf 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -6,8 +6,10 @@ Now that you know what KLoadGen is and that you are familiar with its components You will need these tools to start using the plugin: -- JDK/JRE 11+ +- JDK/JRE 11+ + - (17 recommended) - JMeter 5.4+ + - (5.6.2 recommended) - Maven ## Quickstart diff --git a/docs/images/debug-configuration.png b/docs/images/debug-configuration.png new file mode 100644 index 00000000..1a94ddda Binary files /dev/null and b/docs/images/debug-configuration.png differ diff --git a/docs/images/debug-jmeter-bat.png b/docs/images/debug-jmeter-bat.png new file mode 100644 index 00000000..718667cd Binary files /dev/null and b/docs/images/debug-jmeter-bat.png differ diff --git a/docs/images/debug-jmeter-sh.png b/docs/images/debug-jmeter-sh.png new file mode 100644 index 00000000..e76ed1dc Binary files /dev/null and b/docs/images/debug-jmeter-sh.png differ