<?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: SearchSelectLister Does Not Populate in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14855#M35344</link>
    <description>&lt;P&gt;1 The main thing is that the 'savedSearch' param takes a saved search name.&lt;BR /&gt;
Here you're giving it an inline search string,  it's not finding any saved search by that name.&lt;BR /&gt;
So instead you need to use the 'search' param. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="search"&amp;gt; ... your search here ...&amp;lt;/param&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;(also note that if 'savedSearch' IS defined, it will ignore any 'earliest' and 'latest' params)&lt;/P&gt;

&lt;P&gt;The UI generally warns you about obvious problems like this but I guess this is an exception. &lt;/P&gt;

&lt;P&gt;2 One other minor thing worth noting, is that when you define the &lt;CODE&gt;value&lt;/CODE&gt; vs the &lt;CODE&gt;label&lt;/CODE&gt; in &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="label"&amp;gt;Threat Name&amp;lt;/param&amp;gt;
&amp;lt;param name="value"&amp;gt;ThreatName&amp;lt;/param&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;the assumption is that they are both fields.  But it seems unlikely that there's a field literally called "Threat Name" in the events themselves so that's probably being ignored and &lt;EM&gt;might&lt;/EM&gt; be causing a secondary problem.  &lt;/P&gt;</description>
    <pubDate>Fri, 04 Jun 2010 06:50:27 GMT</pubDate>
    <dc:creator>sideview</dc:creator>
    <dc:date>2010-06-04T06:50:27Z</dc:date>
    <item>
      <title>SearchSelectLister Does Not Populate</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14854#M35343</link>
      <description>&lt;P&gt;I am trying to create a view that creates a dynamically populated drop down list with all the virus names in the past 15 minutes.  I tested my search query and it has a tabular formatted list of ThreatName in column1 and count in column2.  However, when I input this query in my view though, I can see the Loading in my drop down list, but when it finishes, my list will only contain my static value.  I have read the doc over and over again and even used the examples and I've had no luck.  Can anyone see what I'm doing wrong here or if this is a known bug?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;module name="SearchSelectLister"&amp;gt;
  &amp;lt;param name="savedSearch"&amp;gt;sourcetype="Sophos" | fields ThreatName | dedup ThreatName | stats count by ThreatName&amp;lt;/param&amp;gt;
  &amp;lt;param name="settingToCreate"&amp;gt;series_setting&amp;lt;/param&amp;gt;
  &amp;lt;param name="earliest"&amp;gt;-15m@m&amp;lt;/param&amp;gt;
  &amp;lt;param name="searchWhenChanged"&amp;gt;False&amp;lt;/param&amp;gt;
  &amp;lt;param name="label"&amp;gt;Threat Name&amp;lt;/param&amp;gt;
  &amp;lt;param name="searchFieldsToDisplay"&amp;gt;
    &amp;lt;list&amp;gt;
      &amp;lt;param name="label"&amp;gt;Threat Name&amp;lt;/param&amp;gt;
      &amp;lt;param name="value"&amp;gt;ThreatName&amp;lt;/param&amp;gt;
    &amp;lt;/list&amp;gt;
  &amp;lt;/param&amp;gt;
  &amp;lt;param name="staticFieldsToDisplay"&amp;gt;
    &amp;lt;list&amp;gt;
      &amp;lt;param name="label"&amp;gt;MAL/Dorf-F&amp;lt;/param&amp;gt;
      &amp;lt;param name="value"&amp;gt;MAL/Dorf-F&amp;lt;/param&amp;gt;
    &amp;lt;/list&amp;gt;
  &amp;lt;/param&amp;gt;
&amp;lt;/module&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Jun 2010 04:05:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14854#M35343</guid>
      <dc:creator>novaMark</dc:creator>
      <dc:date>2010-06-04T04:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: SearchSelectLister Does Not Populate</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14855#M35344</link>
      <description>&lt;P&gt;1 The main thing is that the 'savedSearch' param takes a saved search name.&lt;BR /&gt;
Here you're giving it an inline search string,  it's not finding any saved search by that name.&lt;BR /&gt;
So instead you need to use the 'search' param. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="search"&amp;gt; ... your search here ...&amp;lt;/param&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;(also note that if 'savedSearch' IS defined, it will ignore any 'earliest' and 'latest' params)&lt;/P&gt;

&lt;P&gt;The UI generally warns you about obvious problems like this but I guess this is an exception. &lt;/P&gt;

&lt;P&gt;2 One other minor thing worth noting, is that when you define the &lt;CODE&gt;value&lt;/CODE&gt; vs the &lt;CODE&gt;label&lt;/CODE&gt; in &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;param name="label"&amp;gt;Threat Name&amp;lt;/param&amp;gt;
&amp;lt;param name="value"&amp;gt;ThreatName&amp;lt;/param&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;the assumption is that they are both fields.  But it seems unlikely that there's a field literally called "Threat Name" in the events themselves so that's probably being ignored and &lt;EM&gt;might&lt;/EM&gt; be causing a secondary problem.  &lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2010 06:50:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14855#M35344</guid>
      <dc:creator>sideview</dc:creator>
      <dc:date>2010-06-04T06:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: SearchSelectLister Does Not Populate</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14856#M35345</link>
      <description>&lt;P&gt;I find that it's sometimes easier to construct some things using the Simple XML, then use &lt;CODE&gt;showsource=1&lt;/CODE&gt; to convert it to the Advanced XML.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jun 2010 07:21:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/SearchSelectLister-Does-Not-Populate/m-p/14856#M35345</guid>
      <dc:creator>gkanapathy</dc:creator>
      <dc:date>2010-06-04T07:21:28Z</dc:date>
    </item>
  </channel>
</rss>

