Hi all,
I'm currently working on a custom view with drop-down options. I have a populating search for the options in these drop-down menus, however, it currently take 30 minutes or more for the options to load and show up in the drop-down menus.
<searchTemplate>sourcetype=trialdl country=$country1$ product_name=$product$ download_agent=$dlagent$ | timechart count</searchTemplate>
<fieldset>
<input type="dropdown" token="country1">
<label>Select a Country</label>
<populatingSearch fieldForValue="country" fieldForLabel="country">
<![CDATA[sourcetype="trialdl" | lookup geoip clientip as ip_address | stats count by country]]>
</populatingSearch>
</input>
<input type="dropdown" token="product">
<label>Select a Product</label>
<populatingSearch fieldForValue="product_name" fieldForLabel="product_name">
<![CDATA[sourcetype=trialdl
product_name=* | stats count by product_name]]>
</populatingSearch>
</input>
<input type="dropdown" token="dlagent">
<label>Select a Download Client</label>
<populatingSearch fieldForValue="download_agent" fieldForLabel="download_agent">
<![CDATA[sourcetype=trialdl
download_agent=* | stats count by download_agent]]>
</populatingSearch>
</input>
<input type="time">
<default>Last 30 days</default>
</input>
</fieldset>
In the code snippet above, I have three drop-down list that all take a veryyy long time to populate.
Has anyone else experienced this problem? Know a solution to this? Thanks in advance!
... View more