Releases: anthonygauthier/jmeter-elasticsearch-backend-listener
Releases · anthonygauthier/jmeter-elasticsearch-backend-listener
Version 2.3.0
- Added a new test mode : "error".
- Clarified the "info" mode so it's less confusing.
Version 2.2.5
- Added the request body in the details of the info/debug detail modes
- Added forced lowercase for the ElasticSearch index creation
- Fixed a couple things in the README.md file
2.2.4
- Fixed error with automatic creation of the ElasticSearch Index
2.2.3
- Added the automatic creation of the index on ElasticSearch through a REST call
// Example
PUT localhost:9200/MyIndex
- Removed TODO concerning the future addition of a TransportClient since ElasticSearch plans on removing it eventually. (https://www.elastic.co/blog/the-elasticsearch-java-high-level-rest-client-is-out)
- Use of isSuccessful() instead of isResponseCodeOK()
- Started a full documentation of the plugin using GitHub's wiki feature
- Added a "Test mode (es.test.mode)" - Controls the level of details sent to the ElasticSearch engine
- The "info" mode sends the details (response body, response headers, request headers) or failed requests
- The "debug" mode sends the details of ALL requests/responses
- The "quiet" mode only sends the metrics.
2.2.3-RC3
- Added the automatic creation of the index on ElasticSearch through a REST call
// Example
PUT localhost:9200/MyIndex
- Removed TODO concerning the future addition of a TransportClient since ElasticSearch plans on removing it eventually. (https://www.elastic.co/blog/the-elasticsearch-java-high-level-rest-client-is-out)
2.2.3 RC2
Release Candidate 2 of Version 2.2.3 of the plugin.
- Added AssertionResults back into the sent JSON
- Use of isSuccessful() instead of isResponseCodeOK()
- Started a full documentation of the plugin using GitHub's wiki feature
2.2.3 RC1
- Added a "Test mode (es.test.mode)", enabling user to specify "info" or "debug" to less or more information to ElasticSearch.
- The "info" mode sends the details (response body, response headers, request headers)
- The "debug" mode sends the details of ALL requests/responses
Solves #19
Version 2.2.2
Fixed #16
Version 2.2.1
- Added a filter argument. It is now possible to control which samplers you want to send to ElasticSearch
Version 2.2.0 - Low-level REST Client
- Replaced TransportClient to Low-level REST client allowing the plugin to work with any version of ES
- Changed groupId in pom.xml