Hi I'm a Splunk beginner.
When I read a Splunk document(https://docs.splunk.com/Documentation/SplunkCloud/latest/Viz/tokens), I got a question.
Using token with job properties, panel can be hide.
So my dashboard code is below.
<search>
   <query>
      | makeresults
      | eval test = "123"
   </query> 
   <progress>
      <condition match = "'job.resultCount' == 1">
         <set token = "show_html">True</set>
      </condition>
   </progress>
</search>
What I understand is resultCount == 1 (result is _time, test fields with one row. so resultCount is 1)
So that panel should be hide I guess.
Am I wrong understand?
Thanks.