Hi there,
I really liked the way the elastic search aggregation query works and interested to use it for one of the product.
We are planning to have a funnel analysis or conversion metrics in our product using elastic search.
I went through the docs but having a hard time to locate any query.
Example data:
{
[
{"user_name": "john", "event_name": "A", "date": "2014-08-04"},
{"user_name": "peter", "event_name": "A", "date": "2014-08-04"},
{"user_name": "john", "event_name": "B", "date": "2014-08-05"},
{"user_name": "peter", "event_name": "C", "date": "2014-08-09"},
{"user_name": "john", "event_name": "C", "date": "2014-08-06"},
]
}
Need the query where we can trace john followed the steps in sequence whereas peter has not.
Any help would be really appreciated.