<?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 Override setting in simple xml? (ver 5) in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189762#M11795</link>
    <description>&lt;P&gt;Hi!&lt;/P&gt;

&lt;P&gt;When you set the time ticker with "&amp;lt;input type = time xxxx" in dashboard&lt;BR /&gt;
and also set the time modifier in "&amp;lt;searchTemplate" for each panel,&lt;BR /&gt;
is it correct to understand the setting in each panel overrides the setting in the fieldset?&lt;/P&gt;

&lt;FORM&gt;
  &lt;LABEL&gt;Form search example - inverted flow, panel-defined post-process&lt;/LABEL&gt;
 
  &lt;FIELDSET&gt;
    &lt;INPUT type="text" token="process" /&gt;
      &lt;LABEL&gt;process name&lt;/LABEL&gt;
        &lt;PREFIX&gt;process="&lt;/PREFIX&gt;
        &lt;SUFFIX&gt;"&lt;/SUFFIX&gt;
    
      &lt;INPUT type="time" /&gt;
          &lt;DEFAULT&gt;Yesterday&lt;/DEFAULT&gt;
      
  &lt;/FIELDSET&gt;
 
  &lt;ROW&gt;
    &lt;TABLE&gt;
      &lt;TITLE&gt;Syslog event count per processname&lt;/TITLE&gt;
      &lt;SEARCHTEMPLATE&gt;
          sourcetype=syslog earliest=@y $process$ | stats count by process
      &lt;/SEARCHTEMPLATE&gt;
      &lt;/TABLE&gt;
    &lt;TABLE&gt;
      &lt;TITLE&gt;Syslog event list&lt;/TITLE&gt;
      &lt;SEARCHTEMPLATE&gt;
          sourcetype=syslog earliest=@y $process$
      &lt;/SEARCHTEMPLATE&gt;
    &lt;/TABLE&gt;    
  &lt;/ROW&gt;
&lt;/FORM&gt;

&lt;P&gt;I did a test and seems that each setting in the panel is prioritized within splunk.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Yu&lt;/P&gt;</description>
    <pubDate>Thu, 26 Dec 2013 02:01:19 GMT</pubDate>
    <dc:creator>yuwtennis</dc:creator>
    <dc:date>2013-12-26T02:01:19Z</dc:date>
    <item>
      <title>Override setting in simple xml? (ver 5)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189762#M11795</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;

&lt;P&gt;When you set the time ticker with "&amp;lt;input type = time xxxx" in dashboard&lt;BR /&gt;
and also set the time modifier in "&amp;lt;searchTemplate" for each panel,&lt;BR /&gt;
is it correct to understand the setting in each panel overrides the setting in the fieldset?&lt;/P&gt;

&lt;FORM&gt;
  &lt;LABEL&gt;Form search example - inverted flow, panel-defined post-process&lt;/LABEL&gt;
 
  &lt;FIELDSET&gt;
    &lt;INPUT type="text" token="process" /&gt;
      &lt;LABEL&gt;process name&lt;/LABEL&gt;
        &lt;PREFIX&gt;process="&lt;/PREFIX&gt;
        &lt;SUFFIX&gt;"&lt;/SUFFIX&gt;
    
      &lt;INPUT type="time" /&gt;
          &lt;DEFAULT&gt;Yesterday&lt;/DEFAULT&gt;
      
  &lt;/FIELDSET&gt;
 
  &lt;ROW&gt;
    &lt;TABLE&gt;
      &lt;TITLE&gt;Syslog event count per processname&lt;/TITLE&gt;
      &lt;SEARCHTEMPLATE&gt;
          sourcetype=syslog earliest=@y $process$ | stats count by process
      &lt;/SEARCHTEMPLATE&gt;
      &lt;/TABLE&gt;
    &lt;TABLE&gt;
      &lt;TITLE&gt;Syslog event list&lt;/TITLE&gt;
      &lt;SEARCHTEMPLATE&gt;
          sourcetype=syslog earliest=@y $process$
      &lt;/SEARCHTEMPLATE&gt;
    &lt;/TABLE&gt;    
  &lt;/ROW&gt;
&lt;/FORM&gt;

&lt;P&gt;I did a test and seems that each setting in the panel is prioritized within splunk.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
Yu&lt;/P&gt;</description>
      <pubDate>Thu, 26 Dec 2013 02:01:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189762#M11795</guid>
      <dc:creator>yuwtennis</dc:creator>
      <dc:date>2013-12-26T02:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Override setting in simple xml? (ver 5)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189763#M11796</link>
      <description>&lt;P&gt;Yes, I think it basically the time range which is set on search directly takes precedence in version 5.&lt;BR /&gt;
However, if you set the time earlier than the one on the search, it doesn't follow the time range which is set in the search.&lt;BR /&gt;
Here is my result.&lt;BR /&gt;
Search: earliest=-7d@d latest=@d index=A sourcetype=B | timechart count by type&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;timerange picker: All time -&amp;gt; takes time from search string = -7d&lt;/LI&gt;
&lt;LI&gt;timerange picker: Last 7days -&amp;gt; same result&lt;/LI&gt;
&lt;LI&gt;timerange picker: Last 24hous -&amp;gt; timerange was last 7days but it broke into every 30mins span on each day, and I got the following message, "Search generated too much data for the current display configuration, results have been truncated."&lt;/LI&gt;
&lt;LI&gt;timerange picker: Last 4hours -&amp;gt; same timerange but span changed to every 5mins.&lt;/LI&gt;
&lt;LI&gt;timerange picker: Last 60minutes -&amp;gt; same timerange but span changed to every minute.&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;I hope it helps you a bit.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Dec 2013 03:18:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189763#M11796</guid>
      <dc:creator>appleman</dc:creator>
      <dc:date>2013-12-26T03:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Override setting in simple xml? (ver 5)</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189764#M11797</link>
      <description>&lt;P&gt;Hello appleman.&lt;/P&gt;

&lt;P&gt;Thanks for taking your time. I appreciate your time.&lt;/P&gt;

&lt;P&gt;My plan is to specify "All time" in search and &lt;BR /&gt;
specify flexible time from the time ticker.&lt;/P&gt;

&lt;P&gt;Goal is to fetch all the event from index for specific sub search.&lt;/P&gt;

&lt;P&gt;I will take a look as well.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Dec 2013 02:39:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Override-setting-in-simple-xml-ver-5/m-p/189764#M11797</guid>
      <dc:creator>yuwtennis</dc:creator>
      <dc:date>2013-12-27T02:39:25Z</dc:date>
    </item>
  </channel>
</rss>

