Visualizing data from multiply indices

So, I have user interaction store in the index called "user_interaction" which includes all the data about the user interaction on the website and I have user information stored in another index known as "user_details" which include data about the user.

How can I use the data from both the indexes to make visualization in kibana i.e. Most frequent user on the website? and other

Timelion can plot data from multiple indices into the same visualization using multiple expressions. Example: .es(index=index1-*, metric=count), .es(index=index2-*, metric=count)

Using Timelion limit me for only time-series analysis. I am more looking into visualization using piechart, datatable and bar chart.

Should I try to first join the two indexes(using a join column) and then try to visualize using kibana?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.