Hi @Real_captain , there are two things to analyze: to open a new panel depends the value of a click, you can see in the Dashboard Examples App (even if it's archived it's still useful for this!). ...
See more...
Hi @Real_captain , there are two things to analyze: to open a new panel depends the value of a click, you can see in the Dashboard Examples App (even if it's archived it's still useful for this!). to pass the lookup value, you could add this information as an hidden field to each row and use it for the drilldown in dashboard. In other words, you add this information to each row using e.g. an eval case: | eval lookup=case(
APPLICATION="app1",lookup1.csv",
APPLICATION="app2",lookup3.csv",
APPLICATION="app3",lookup3.csv") In this way, you have a field to use in the drilldows. Then you hide this field in the first table using the <fields> </fields>tag, but you can use it in the drilldown. Ciao. Giuseppe