In the first panel of a dashboard, a user can click on a host to get more panels to display. One such panel depends on if row.host contains a string. The panel I want depends on $disk$.
<condition>
<set token="host">$row.host$</set>
</condition>
<condition match="'row.host == "exch-mail*"">
<set token="disk">true</set>
</condition>
but the panel depending on $disk$ is not working. All the other panels are fine but they are using $host$.
... View more