Thanks for the reply
There is a single panel in the drilldown dashboard that will show the details based on the input.
First Chart in the main dashboard passes user name and asset name whereas second chart passes severity name and asset name to the drill down dashboard
There are certain records that does not have user name but if we hide it, results will not come until it gets the input for user type.
When second chart is clicked there will be no input for user name ,but we want to show all the records irrespective of user name. I tried by adding this statement also:
|eval a = if(isnull(user),"*",user)
|where user=a
It does not work when user=* as * does not work with where clause.
Please suggest if there is any other way to do this.
... View more