Basic ElasticSearch implementation of EventEmitter that simply pushes out data to
ElasticSearch server. It performs all the operation in the background thread but does not
do any intermediate data persistence, meaning it can result in data lost in case of server
crashes.
This event emitter expects following parameters to configure itself - via system properties
- org.jbpm.event.emitters.elasticsearch.date_format - date and time format to be sent to ElasticSearch - default format is yyyy-MM-dd'T'hh:mm:ss.SSSZ
- org.jbpm.event.emitters.elasticsearch.url - location of the ElasticSearch server - defaults to http://localhost:9200
- org.jbpm.event.emitters.elasticsearch.user - optional user name for authentication to ElasticSearch server
- org.jbpm.event.emitters.elasticsearch.password - optional password for authentication to ElasticSearch server
NOTE: Optional authentication is a BASIC authentication.