Hi Team,
I have below events in elasitcsearch.
timestamp,module,page,userId,actionType,sessionId
2019-02-13 02:56:05.356,succession,talentsearch,cgrant1,list_saved_search,sid1
2019-02-13 02:56:05.358,succession,talentsearch,lokamoto1,list_saved_search,sid2
2019-02-13 02:56:05.358,succession,talentsearch,cgrant1,start_over,sid1
2019-02-13 02:56:05.360,succession,talentsearch,cgrant1,delete_saved_search,sid1
2019-02-13 02:56:05.361,succession,talentsearch,lokamoto1,search,sid2
2019-02-13 02:56:05.365,succession,talentsearch,lokamoto1,nominate,sid2
with above sample log event, I come up with 2 user scenarios from actionType field
- list_saved_search->start_over->delete_saved_search (cgrant1's user scenario in sid1)
- list_saved_search->search->nominate (lokamoto's user scenario in sid2)
how can I join the actionType fields with userId and httpsessionID cross events to get a string represting a user scenario with script fields???