Hello, I am attempting to create a search that utilises two drop boxes. The first dropdown is populated from a query which lists servers <label>Server List</label>
<description>Projects the future disk usage of all/description>
<fieldset autoRun="false" submitButton="true">
<input type="dropdown" token="Host" searchWhenChanged="true">
<label>Server Name</label>
<fieldForLabel>Host</fieldForLabel>
<fieldForValue>Host</fieldForValue>
<search>
<query>| inputlookup windows_hostmon_system | regex Host="regexgoeshere" | dedup Host</query>
</search>
<default>default server goes here</default>
<initialValue>InitialServerName</initialValue>
</input> I then want to use the selection of the above dropdown and commit it to a token to be used in the next dropdown. <input type="dropdown" token="Disk">
<label>Disk</label>
<fieldForLabel>Disk</fieldForLabel>
<fieldForValue>Name</fieldForValue>
<search>
<query>eventtype=hostmon_windows source=Disk host="$HostChoice$" sourcetype="Winhostmon" Name="*" | stats count(Name) by Name</query>
<earliest>-15m</earliest>
<latest>now</latest>
</search>
</input> Is it possible to capture the output of a dynamic dropdown and use that output as a variable in other dynamic dropdowns. Kind Regards
... View more