Skip to content

Commit 2be39a6

Browse files
Merge branch 'master' of github.com:delirius325/jmeter-elasticsearch-backend-listener
2 parents 18c1d7b + 3eb2bf8 commit 2be39a6

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ JMeter ElasticSearch Backend Listener is a JMeter plugin enabling you to send te
1010
* By making bulk requests, there are practically no impacts on the performance of the tests themselves.
1111
* Filters
1212
* Only send the samples you want by using Filters! Simply type them as follows in the appropriate field : ``filter1;filter2;filter3`` or ``sampleLabel_must_contain_this``.
13-
* Verbose, semi-verbose, and quiet mode
14-
* __debug__ : Send request/response information of all requests (headers, body, etc.)
15-
* __info__ : Only send the request/response information of failed requests (headers, body, etc.)
16-
* __quiet__ : Only send the response time, bytes, and other metrics
13+
* Verbose, semi-verbose, error only, and quiet mode
14+
* __debug__ : Send request/response information of all samplers (headers, body, etc.)
15+
* __info__ : Sends all samplers to the ElasticSearch engine, but only sends the headers, body info for the failed samplers.
16+
* __quiet__ : Only sends the response time, bytes, and other metrics
17+
* __error__ : Only sends the failing samplers to the ElasticSearch engine (Along with their headers and body information).
1718
* Use either Kibana or Grafana to vizualize your results!
1819
* [Click here to get a sample Grafana dashboard!](https://github.com/delirius325/jmeter-elasticsearch-backend-listener/wiki/JMeter-Generic-Dashboard) - All you need to do is import it into Grafana and change de data source!
1920
* Continuous Integration support - [Build comparison!](https://github.com/delirius325/jmeter-elasticsearch-backend-listener/wiki/Continuous-Integration---Build-Comparison)
@@ -22,7 +23,7 @@ JMeter ElasticSearch Backend Listener is a JMeter plugin enabling you to send te
2223
<dependency>
2324
<groupId>io.github.delirius325</groupId>
2425
<artifactId>jmeter.backendlistener.elasticsearch</artifactId>
25-
<version>2.2.5</version>
26+
<version>2.3.0</version>
2627
</dependency>
2728
```
2829

src/main/java/io/github/delirius325/jmeter/backendlistener/elasticsearch/ElasticsearchBackend.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ public Map<String, Object> getElasticData(SampleResult sr, BackendListenerContex
243243
jsonObject.put("AssertionResults", assertionArray);
244244
}
245245

246-
// If built from Jenkins, add the hard-c oded version to be able to compare response time
247-
// of two builds over the elapsed time
246+
// If built from Jenkins, add an hard-coded date serving as elapsed time for comparison
247+
// This way you can superimpose the two tests and observe the difference in response time
248248
if(this.buildNumber != 0) {
249249
Date elapsedTimeComparison = getElapsedTime(true);
250250
if(elapsedTimeComparison != null)

0 commit comments

Comments
 (0)