<?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 dropdown for the  field in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51652#M2614</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;i have an log4j logs in that i have extracted the User names ...so now my field User has 79 user names what i need is i want a dropdown in that i want this 79 name to be in that list so that if i click any one of the name i want to see the log related to that Username&lt;/P&gt;

&lt;P&gt;plz give an idea to proceed&lt;/P&gt;

&lt;P&gt;thanks in advance,&lt;BR /&gt;
poornima &lt;/P&gt;</description>
    <pubDate>Mon, 03 Dec 2012 10:50:14 GMT</pubDate>
    <dc:creator>splunkpoornima</dc:creator>
    <dc:date>2012-12-03T10:50:14Z</dc:date>
    <item>
      <title>dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51652#M2614</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;i have an log4j logs in that i have extracted the User names ...so now my field User has 79 user names what i need is i want a dropdown in that i want this 79 name to be in that list so that if i click any one of the name i want to see the log related to that Username&lt;/P&gt;

&lt;P&gt;plz give an idea to proceed&lt;/P&gt;

&lt;P&gt;thanks in advance,&lt;BR /&gt;
poornima &lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 10:50:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51652#M2614</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-12-03T10:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51653#M2615</link>
      <description>&lt;P&gt;A quick Google for, "Splunk forms drop down" revealed;&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/4.3/Developer/AddDropDowns"&gt;http://docs.splunk.com/Documentation/Splunk/4.3/Developer/AddDropDowns&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Let us know if you hit any specific problem or issue&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 10:55:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51653#M2615</guid>
      <dc:creator>Drainy</dc:creator>
      <dc:date>2012-12-03T10:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51654#M2616</link>
      <description>&lt;P&gt;I verifed the given link and i craeted the code as below &lt;BR /&gt;
&lt;/P&gt;&lt;FORM&gt;&lt;BR /&gt;
  &lt;LABEL&gt;Pros_Source&lt;/LABEL&gt;&lt;BR /&gt;
  &lt;FIELDSET autorun="true"&gt;&lt;BR /&gt;
       &lt;INPUT type="dropdown" token="tokenusedindropdown" /&gt;&lt;BR /&gt;
           &lt;LABEL&gt;User&lt;/LABEL&gt;&lt;BR /&gt;
           &lt;SUFFIX&gt;&lt;/SUFFIX&gt;&lt;BR /&gt;
           &lt;POPULATINGSEARCH fieldforvalue="User" fieldforlabel="User"&gt;|savedsearch"UserExtraction"&lt;BR /&gt;&lt;BR /&gt;
       &lt;/POPULATINGSEARCH&gt;&lt;BR /&gt;
       &lt;BR /&gt;
        &lt;/FIELDSET&gt;&lt;BR /&gt;
      &lt;/FORM&gt;&lt;BR /&gt;
"UserExtraction" has source="AMGDCPROSAPPP1.log"| rex FIELD=_raw "User: (?&lt;USER&gt;.*)"|stats values(User)&lt;P&gt;&lt;/P&gt;

&lt;P&gt;correct me if i went wrong in the above code&lt;/P&gt;
&lt;/USER&gt;</description>
      <pubDate>Mon, 28 Sep 2020 12:54:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51654#M2616</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2020-09-28T12:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51655#M2617</link>
      <description>&lt;P&gt;stats values(User) returns just one event. That won't work. Study the link Drainy gave you. It clearly shows how all examples have one line per item in the dropdown.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 12:17:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51655#M2617</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-12-03T12:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51656#M2618</link>
      <description>&lt;P&gt;Hi ayn,&lt;/P&gt;

&lt;P&gt;I got the answer..but one small problem..&lt;/P&gt;

&lt;P&gt;i have inserted the &lt;DEFAULT&gt;*&lt;/DEFAULT&gt; but this * is not geting listed down in the dropdown&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:05:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51656#M2618</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-12-03T13:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51657#M2619</link>
      <description>&lt;P&gt;Well, as you can see in the DOCS &lt;CODE&gt;*hint*&lt;/CODE&gt;...&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;default&amp;gt;    The default option to select.

If the default option cannot be found, the first option is selected.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:14:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51657#M2619</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2012-12-03T13:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51658#M2620</link>
      <description>&lt;P&gt;hi ayn i found the answer for that..&lt;/P&gt;

&lt;P&gt;i used choice value ...&lt;/P&gt;

&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:37:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51658#M2620</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-12-03T13:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51659#M2621</link>
      <description>&lt;P&gt;please verify the attachment contains the ouput..&lt;/P&gt;

&lt;P&gt;in that table i want to remove the _time coloumn alone&lt;/P&gt;

&lt;P&gt;&lt;IMG src="http://splunk-base.splunk.com//storage/tomcat.png" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;plz suggest the way&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:41:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51659#M2621</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-12-03T13:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51660#M2622</link>
      <description>&lt;P&gt;your search | fields - _time&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:44:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51660#M2622</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2012-12-03T13:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51661#M2623</link>
      <description>&lt;P&gt;&lt;POPULATINGSEARCH fieldforvalue="User" fieldforlabel="User"&gt;&lt;BR /&gt;
      &amp;lt;![CDATA[source="C:\Users\20875\Desktop\pros-Tomcat-AMGDCPROSAPPP1.log" &lt;BR /&gt;
      | rex FIELD=_raw "User: (?&lt;USER&gt;.*)"&lt;BR /&gt;
      | stats count by User]]&amp;gt;&lt;BR /&gt;
    &lt;/USER&gt;&lt;BR /&gt;
&lt;BR /&gt;
       &lt;BR /&gt;
  &lt;ROW&gt;&lt;BR /&gt;
      &lt;TABLE&gt;&lt;BR /&gt;
          &lt;TITLE&gt;Transaction&lt;/TITLE&gt;&lt;BR /&gt;
          &lt;SEARCHTEMPLATE&gt;source="C:\Users\20875\Desktop\pros-Tomcat-AMGDCPROSAPPP1.log" $username$&lt;/SEARCHTEMPLATE&gt;&lt;BR /&gt;
    &lt;/TABLE&gt;&lt;BR /&gt;
     &lt;/ROW&gt;&lt;BR /&gt;
     &lt;BR /&gt;
after run this code.i got the table as above with time field ..but i want to remove that&lt;/POPULATINGSEARCH&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:49:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51661#M2623</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-12-03T13:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51662#M2624</link>
      <description>&lt;P&gt;searchtemplate&amp;gt;source="C:\Users\20875\Desktop\pros-Tomcat-AMGDCPROSAPPP1.log" $username$&lt;STRONG&gt;|fields - _time&lt;/STRONG&gt; &amp;lt;/searchtemplate&amp;gt;&lt;BR /&gt;
&lt;TABLE&gt;&lt;/TABLE&gt; or&lt;BR /&gt;
searchtemplate&amp;gt;source="C:\Users\20875\Desktop\pros-Tomcat-AMGDCPROSAPPP1.log" $username$|&lt;STRONG&gt;fields host index .....&lt;/STRONG&gt; &amp;lt;/searchtemplate&amp;gt;&lt;BR /&gt;
&lt;TABLE&gt;&lt;/TABLE&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:56:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51662#M2624</guid>
      <dc:creator>sruthy</dc:creator>
      <dc:date>2012-12-03T13:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51663#M2625</link>
      <description>&lt;P&gt;thanks guys..&lt;BR /&gt;
its working!!!!&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 13:59:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51663#M2625</guid>
      <dc:creator>splunkpoornima</dc:creator>
      <dc:date>2012-12-03T13:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: dropdown for the  field</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51664#M2626</link>
      <description>&lt;P&gt;Cool... enjoy splunking &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Dec 2012 14:00:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/dropdown-for-the-field/m-p/51664#M2626</guid>
      <dc:creator>smolcj</dc:creator>
      <dc:date>2012-12-03T14:00:21Z</dc:date>
    </item>
  </channel>
</rss>

