I am also facing the similar kind of issue. Below is the part of my code.
I am trying to make drill down in the same dashboard. From the panel1, I am taking the token input of click value as "feature" and passing to panel2.
In the condition part if my token $feature$ = "FileInspector", then I am setting a Query itself as a token called "querytocall". if the token $feature$ = "UMB", then setting other query to the same token "querytocall".
At last I am passing that token "querytocall" itself as a search query for the Panel2. But this is not working. My panel2 is showing as "waiting for the input"
<drilldown>
<set token="feature">$click.value$</set>
</drilldown>
</chart>
</panel>
<panel>
<title>$feature$ - Exception From Hosts Details</title>
<chart depends="$feature$">
<change>
<condition match=" $feature$ == "FileInspector" ">
<set token="querytocall">index=a source=b | eval....</set>
</condition>
<condition match=" $feature$ == "UMB" ">
<set token="querytocall">index=c source=d | eval....</set>
</condition>
</change>
<search>
<query>$querytocall$</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
Could anyone please help me on this.
... View more