<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: dynamic form... is it normal to be this slow? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45649#M2237</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;index=winradius eventtype=nps_accessReqRejected | top nps_radiusClientIP
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;runs over all time. change it to&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=winradius eventtype=nps_accessReqRejected earliest=-24h | top nps_radiusClientIP
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and I'll bet it runs much much faster...&lt;/P&gt;</description>
    <pubDate>Fri, 09 Nov 2012 23:06:52 GMT</pubDate>
    <dc:creator>lguinn2</dc:creator>
    <dc:date>2012-11-09T23:06:52Z</dc:date>
    <item>
      <title>dynamic form... is it normal to be this slow?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45647#M2235</link>
      <description>&lt;P&gt;A simple query runs very quickly (3s)... but when I use that same query to build a dynamic form (either radio or dropdown) the query takes apporx 60s. As a test I have eliminated charts so the form only creates a dropdown list (or radio buttons) plus a row of static HTML (becuase apparently I must have a childobject within the form). But it still takes approx 60s. &lt;/P&gt;

&lt;P&gt;My question is... is this normal.. or is there soemthing wrong with my simple XML?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;form&amp;gt;
&amp;lt;label&amp;gt;Test InvertedFlow 5&amp;lt;/label&amp;gt;
&amp;lt;fieldset autoRun="true"&amp;gt;
&amp;lt;input type="radio" token="ip"&amp;gt;
&amp;lt;label&amp;gt;Select Store IP&amp;lt;/label&amp;gt;
&amp;lt;populatingSearch fieldForValue="nps_radiusClientIP" fieldForLabel="nps_radiusClientIP"&amp;gt;
&amp;lt;![CDATA[index=winradius eventtype=nps_accessReqRejected | top nps_radiusClientIP]]&amp;gt;
&amp;lt;/populatingSearch&amp;gt;
&amp;lt;earliestTime&amp;gt;-4h&amp;lt;/earliestTime&amp;gt;
&amp;lt;latestTime&amp;gt;now&amp;lt;/latestTime&amp;gt;
&amp;lt;/input&amp;gt;

&amp;lt;input type="time"&amp;gt;
&amp;lt;default&amp;gt;Last 4 Hours&amp;lt;/default&amp;gt;
&amp;lt;/input&amp;gt;
&amp;lt;/fieldset&amp;gt;

&amp;lt;row&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;p&amp;gt;This is an &amp;lt;i&amp;gt;&amp;lt;b&amp;gt;HTML panel&amp;lt;/b&amp;gt;&amp;lt;/i&amp;gt; providing links to saved searches.&amp;lt;/p&amp;gt;
&amp;lt;/html&amp;gt;
&amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 08 May 2012 12:36:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45647#M2235</guid>
      <dc:creator>mikefoti</dc:creator>
      <dc:date>2012-05-08T12:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic form... is it normal to be this slow?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45648#M2236</link>
      <description>&lt;P&gt;Through trial and error I discovered, when possible/practicable, replacing the dynamically populated lookup (where list items are generated from query results) with a static lookup (where  list items are coded within the xml) is much quicker. In hind site this seems kind of obvious. Whether trying to populate a list of radio buttons or a drop-down list, it will take longer if splunk has to query an index vs simply pulling list items right out of the xml it is already reading. &lt;/P&gt;

&lt;P&gt;More info on how to replace a dynamically populated drop-down with a static drop-down here &lt;BR /&gt;
&lt;A href="http://splunk-base.splunk.com/answers/51663/convert-dynamic-drop-down-to-static-in-advanced-xml"&gt;http://splunk-base.splunk.com/answers/51663/convert-dynamic-drop-down-to-static-in-advanced-xml&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jun 2012 14:08:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45648#M2236</guid>
      <dc:creator>mikefoti</dc:creator>
      <dc:date>2012-06-28T14:08:50Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic form... is it normal to be this slow?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45649#M2237</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;index=winradius eventtype=nps_accessReqRejected | top nps_radiusClientIP
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;runs over all time. change it to&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=winradius eventtype=nps_accessReqRejected earliest=-24h | top nps_radiusClientIP
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and I'll bet it runs much much faster...&lt;/P&gt;</description>
      <pubDate>Fri, 09 Nov 2012 23:06:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dynamic-form-is-it-normal-to-be-this-slow/m-p/45649#M2237</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2012-11-09T23:06:52Z</dc:date>
    </item>
  </channel>
</rss>

