-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
415 issue complete the funcionality of value schema file serializer #416
Merged
RobertoSngular
merged 15 commits into
master
from
415-issue-complete-the-funcionality-of-value-schema-file-serializer
Nov 6, 2023
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
901de81
[Config] Adding the funcionality and update the JMeter version to 5.6…
RobertoSngular f82173a
Add how to debug docs and recommended versions
RobertoSngular e7d178c
Fixing codacy recommended changes
RobertoSngular 8086f0b
Fix Codacy checstyle errors detected
GraciMndzSNG 201b98b
Fix Codacy checstyle errors detected
GraciMndzSNG 90c199d
Fix Codacy checstyle errors detected
GraciMndzSNG 44171b2
Add debugging to sidebar and fix image
RobertoSngular 0feef97
Checkstile fixes
RobertoSngular cb49fcf
Checkstile fixes...
RobertoSngular fb4a953
Fixing codacy recommended changes
RobertoSngular c79ff00
Checkstile fixing
RobertoSngular 3aca586
Merge branch 'master' into 415-issue-complete-the-funcionality-of-val…
RobertoSngular 5fe43ef
Merge de los cambios en master
RobertoSngular c9dcfc9
Recomended changes and fixing open protoFiles and Json in Schema File…
RobertoSngular d3b4a7d
delete unused imports
RobertoSngular File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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-<version>\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-<version>\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-<version>.jar` file and move it to Jmeter files, to apply | ||
the changes you made in the code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
|
||
<artifactId>kloadgen</artifactId> | ||
|
||
<version>5.6.8</version> | ||
<version>5.6.9</version> | ||
|
||
<name>KLoadGen</name> | ||
<description>Load Generation Jmeter plugin for Kafka Cluster. Supporting AVRO, JSON Schema and Protobuf schema types. Generate Artificial | ||
|
@@ -301,6 +301,17 @@ | |
</roles> | ||
<timezone>Europe/Madrid</timezone> | ||
</developer> | ||
<developer> | ||
<id>RobertoSngular</id> | ||
<name>Roberto Riveira Veiga</name> | ||
<email>[email protected]</email> | ||
<organization>Sngular</organization> | ||
<organizationUrl>https://www.sngular.com</organizationUrl> | ||
<roles> | ||
<role>Trainee Backend Developer</role> | ||
</roles> | ||
<timezone>Europe/Madrid</timezone> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why you want to go back with this change?