EventStore to Logstash/ElasticSearch?

Hi,

I would like to import my events into ElasticSearch using Logstash, so
that I can do reports in Kibana based on the event stream. Has anyone
already written a Logstash input plugin for this, or any similar
client? Basically you would point it at the ES instance/cluster, and
it would get events and output through Logstash, and keep track of
where it is in case of restart of Logstash.

thanks, Rickard

A catchup subscription does exactly this, you just need to keep track
of where it is for the restart. See
https://github.com/EventStore/EventStore.JVM/blob/master/src/test/scala/eventstore/SubscribeToAllCatchingUpITest.scala

Hey

A catchup subscription does exactly this, you just need to keep track
of where it is for the restart. See
https://github.com/EventStore/EventStore.JVM/blob/master/src/test/scala/eventstore/SubscribeToAllCatchingUpITest.scala

Yeah, I know about that one, what I am wondering is if anyone has
already done the job of creating plugins for Logstash to input/output
EventStore. Feels like an obvious matchup! I don't speak Ruby, so
can't make one myself.

regards, Rickard