Skip to content
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

Updated libs #42

Merged
merged 1 commit into from
May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ The plugin sends metrics to InfluxDB and provides the possibility to visualize t
* Latency;
* The response time (uses from the SampleResult.class, needs to make aggregate report).

Notes: if you need to save the errors you got wile the test to csv like file and then share to the dev team you can use the [jmeter-csv-listener-plugin](https://github.com/mderevyankoaqa/jmeter-csv-listener-plugin).
This plugin can be used while the functional testing and load tests as well.

## Important notes
The plugin allows 5 errors happened one by one, then plugin will stop importing the results after that! See details in the logs.
Counter will be refreshed at least you have 4 fails. This is protection to avoid OOM error.
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

sourceCompatibility = 11
version = '1.5'
version = '1.6'
def title = 'JMeterInfluxDBListener'
def archiveName = 'jmeter-plugin-influxdb2-listener'

Expand All @@ -35,7 +35,7 @@ def archiveName = 'jmeter-plugin-influxdb2-listener'
implementation group: 'org.apache.jmeter', name: 'ApacheJMeter_java', version: '5.4.3'
implementation group: 'org.apache.jmeter', name: 'ApacheJMeter_components', version: '5.4.3'
implementation group: 'org.apache.jmeter', name: 'jorphan', version: '5.4.3'
implementation group: 'com.influxdb', name: 'influxdb-client-java', version: '4.0.0'
implementation group: 'com.influxdb', name: 'influxdb-client-java', version: '6.1.0'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0'


Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Fri Apr 17 22:39:55 EEST 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
Expand Down