<input type="dropdown" token="envtoken">
<label>env</label>
<fieldForLabel>label</fieldForLabel>
<fieldForValue>host</fieldForValue>
<search> <query>
index=aaa (source="/v...
See more...
<input type="dropdown" token="envtoken">
<label>env</label>
<fieldForLabel>label</fieldForLabel>
<fieldForValue>host</fieldForValue>
<search> <query>
index=aaa (source="/var/log/testd.log")
|stats count by host
| eval label=case(match(host, ".*tv*."), "Test",
match(host, ".*qv*."), "QA",
match(host, ".*pv*."), "Prod")| dedup label</query>
<earliest>-15m</earliest>
<latest>now</latest>
</search>
</input>
dropdownlist binding with TEST, QA and PROD In QA and prod have 3 host. If i select QA from dropdown list , will the search includes from all the three hosts? could you plase confirm