<?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 What is the easiest way to create an input filter for a dynamic Drop-down Splunk 6.1.3? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159019#M44830</link>
    <description>&lt;P&gt;Hi Folks,&lt;/P&gt;

&lt;P&gt;I have a dashboard that automatically populates a drop-down based on a search with CDATA.  I want to be able to actually type into the box, say a specific IP, and as I'm typing it, have it do an on-demand filter.  The closest I've been able to do is a "multi-select" input instead of a drop-down.  Does anyone know the easiest way to do this?&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Tue, 24 Feb 2015 20:55:16 GMT</pubDate>
    <dc:creator>dwalker1</dc:creator>
    <dc:date>2015-02-24T20:55:16Z</dc:date>
    <item>
      <title>What is the easiest way to create an input filter for a dynamic Drop-down Splunk 6.1.3?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159019#M44830</link>
      <description>&lt;P&gt;Hi Folks,&lt;/P&gt;

&lt;P&gt;I have a dashboard that automatically populates a drop-down based on a search with CDATA.  I want to be able to actually type into the box, say a specific IP, and as I'm typing it, have it do an on-demand filter.  The closest I've been able to do is a "multi-select" input instead of a drop-down.  Does anyone know the easiest way to do this?&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 20:55:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159019#M44830</guid>
      <dc:creator>dwalker1</dc:creator>
      <dc:date>2015-02-24T20:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is the easiest way to create an input filter for a dynamic Drop-down Splunk 6.1.3?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159020#M44831</link>
      <description>&lt;P&gt;For Splunk 6.1.X version, multiselect is option to get the dropdown with text field. This feature is available (brought back) in Splunk 6.2&lt;/P&gt;</description>
      <pubDate>Tue, 24 Feb 2015 22:32:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159020#M44831</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2015-02-24T22:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: What is the easiest way to create an input filter for a dynamic Drop-down Splunk 6.1.3?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159021#M44832</link>
      <description>&lt;P&gt;Would you be able to only have it default to one selection?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Feb 2015 18:50:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159021#M44832</guid>
      <dc:creator>dwalker1</dc:creator>
      <dc:date>2015-02-25T18:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: What is the easiest way to create an input filter for a dynamic Drop-down Splunk 6.1.3?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159022#M44833</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;
In Splunk 6.2, this is possible . When you type for example a specific sourcetype in my case, the input will automatically filter the sourcetype who macth to that sourcetype. My XML code with CDATA! is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;form&amp;gt;
  &amp;lt;label&amp;gt;Dashboard_Filter&amp;lt;/label&amp;gt;
  &amp;lt;fieldset submitButton="false"&amp;gt;
    &amp;lt;input type="dropdown" token="sourcetype" searchWhenChanged="true"&amp;gt;
      &amp;lt;label&amp;gt;Select Sourcetype&amp;lt;/label&amp;gt;
      &amp;lt;search&amp;gt;
        &amp;lt;query&amp;gt;&amp;lt;![CDATA[index=_internal | table sourcetype]]&amp;gt;&amp;lt;/query&amp;gt;
      &amp;lt;/search&amp;gt;
      &amp;lt;fieldForLabel&amp;gt;sourectype&amp;lt;/fieldForLabel&amp;gt;
      &amp;lt;fieldForValue&amp;gt;sourcetype&amp;lt;/fieldForValue&amp;gt;
      &amp;lt;prefix&amp;gt;sourcetype="&amp;lt;/prefix&amp;gt;
      &amp;lt;suffix&amp;gt;"&amp;lt;/suffix&amp;gt;
    &amp;lt;/input&amp;gt;
  &amp;lt;/fieldset&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;table&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=_internal | stats count by sourcetype&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
      &amp;lt;/table&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/form&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 17 Mar 2015 09:41:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/What-is-the-easiest-way-to-create-an-input-filter-for-a-dynamic/m-p/159022#M44833</guid>
      <dc:creator>ngatchasandra</dc:creator>
      <dc:date>2015-03-17T09:41:05Z</dc:date>
    </item>
  </channel>
</rss>

