Hello, I have a lookup file which contains 10 service names . In my dashboard i have a drop down for those services . I have included lookup file in the drop down. That works fine. but i need to show 10 panels (because lookup file has 10 entries as of now ) when i selected " ALL " option in the drop down. I have added " ALL " option as default . Now it is showing only one panel when ALL was selected. but i need to show 10 panels when "ALL" option was selected in the drop down. </input>
<input type="dropdown" token="service" searchWhenChanged="true">
<label>Services</label>
<choice value="*">ALL</choice>
<default>*</default>
<initialValue>*</initialValue>
<fieldForLabel>user</fieldForLabel>
<fieldForValue>user</fieldForValue>
<search>
<query>| inputlookup services_vas.csv</query>
<earliest>-24h@h</earliest>
<latest>now</latest>
</search>
</input>
<input type="dropdown" token="host" searchWhenChanged="true">
<label>Server</label>
<choice value="eudmsurfvas1">eudmsurfvas1</choice>
<choice value="eudmsurfvas2">eudmsurfvas2</choice>
<default>eudmsurfvas1</default>
<initialValue>eudmsurfvas1</initialValue>
</input>
</fieldset>
<row>
<panel>
<title>Downtime for Service - $service$</title>
<single>
<title>Service stop time - ( $stop$) and Service restored time -( $restore$ )</title>
<search>
<query>index=surf host=$host$ user=$service$ | streamstats current=f last(_time) as LastTime by user | eval delay=LastTime-_time | table delay , LastTime , _time | where delay > 300 | stats latest(delay)</query>
<earliest>$selectedTime.earliest$</earliest>
<latest>$selectedTime.latest$</latest>
</search>
<option name="colorMode">block</option>
<option name="drilldown">none</option>
<option name="rangeColors">["0x53a051","0x006d9c","0xdc4e41"]</option>
<option name="rangeValues">[300,600]</option>
<option name="underLabel">Downtime in secs</option>
<option name="useColors">1</option>
</single>
</panel>
</row> Thank you
... View more