We have custom application that stores records. We are pushing those records in ElasticSearch for building dashboard in Kibana. Once of ask is that whenever the user clicks on metrics, graphs, tables or any other visualization it should open a new tab with custom application URL haing all the query params, filters captured so that we can load the data in custom web application based on filters applied in Kibana
Example:
If user has applied filter on time and a filter on status, then clicking on any visualizations should capture those filters and pass it to custom URL as query string
http://customapp.com/app?time=2020-01-01&status=new
I searched for a solution in all the discussions. I could not find.
Please suggest any approach that can work for my case.