Skip to content

sergeyradov/ElasticSearchBackendListener

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This project is the plugion for JMeter 3.1 which provides the functionality to send Sample results data to elasticsearch

Before using create index and doc type in elasticsearch which you are going to use. Also, create mapping for "@timestamp" field with the following request:

curl -X PUT "http://{es_host}:{es_port}/{index_name}" -H 'Content-Type: application/json' -d' { "mappings": { "{doc_type}": { "properties": { "@timestamp": { "type": "date", "format": "epoch_millis" } } } } }'

Usage: -add backendListener.jar to lib/ext of your jmeter. -add BackendListener to your TestPlan, choose 'com.BackendListener' implementation and configure parameters.

About

JMeter plugin

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%