Kibane Drilling Implementation 4

Is it possible, and if so, how to implement drilling in Kibana 4?

For example, you could say that there is a pie chart on the dashboard that represents products. Below that could be a table that shows the constituent parts that are used to make products, along with vendor name, cost, availability, and other details. Clicking on a product in the pie chart will filter the table to show only the parts for that specific product. After you select a vendor field, check another table for vendor information.

This requires a multi-column table widget to be used to display the details for each part and that each column in the table could potentially be a link to another table.

Also, let's say there are three charts at the top of the toolbar. By clicking on each of them, you must change the area below to display a table with specific query and data columns related to the selected chart.

Is such a feature available in Kibana?

+3


source to share


2 answers


In Kibana, you can basically implement this type of functionality. What you need to do is create a search with the fields you want to display and save. Then you will create a visualization that has things that you want to unfold.

Finally, create a toolbar with all the visualizations on it, and then add a search (when you hit +, there will be a tab that says โ€œSearches.โ€ Select your saved search there.



When you click on your widgets, it will start adding filters and refreshing the page, including your "search".

In the search widget found in the dashboard, you can click on the rows and they will expand to show the fields. Next to each field is +/-, which will allow you to filter this value or exclude this value.

+2


source


I think Kibi has this feature. But then again I think this is for relational database tables



Please refer to this issue https://github.com/elastic/kibana/issues/4439

+1


source







All Articles