<?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 How to make a single panel in a dashboard autorun? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343098#M22314</link>
    <description>&lt;P&gt;Is there a way to make a single panel in a dashboard autorun? I know I can set the refresh field in the dashboard itself to make the whole thing refresh on a timer, but I only want a single panel to do so.&lt;/P&gt;</description>
    <pubDate>Fri, 09 Mar 2018 01:57:56 GMT</pubDate>
    <dc:creator>brajaram</dc:creator>
    <dc:date>2018-03-09T01:57:56Z</dc:date>
    <item>
      <title>How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343098#M22314</link>
      <description>&lt;P&gt;Is there a way to make a single panel in a dashboard autorun? I know I can set the refresh field in the dashboard itself to make the whole thing refresh on a timer, but I only want a single panel to do so.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 01:57:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343098#M22314</guid>
      <dc:creator>brajaram</dc:creator>
      <dc:date>2018-03-09T01:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343099#M22315</link>
      <description>&lt;P&gt;Which version of Splunk are you running on?  The later versions allow you to independently execute searches in each panel.  This can be achieved by editing the dashboard and editing the panel search then choosing to execute the searches at a scheduled frequency.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 03:02:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343099#M22315</guid>
      <dc:creator>damiensurat</dc:creator>
      <dc:date>2018-03-09T03:02:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343100#M22316</link>
      <description>&lt;P&gt;I'm on version 6.5.3. Where in the documentation would I find being able to execute the searches at a scheduled frequency? I saw the refresh tab in &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.3.0/Viz/PanelreferenceforSimplifiedXML#Dashboards_and_forms"&gt;panel reference&lt;/A&gt;, how do I do that for the specific searches?&lt;/P&gt;

&lt;P&gt;My code is:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;Current Logged in Count&amp;lt;/title&amp;gt;
        &amp;lt;search&amp;gt;
          &amp;lt;query&amp;gt;index=... | stats dc(uid)&amp;lt;/query&amp;gt;
          &amp;lt;earliest&amp;gt;-5m&amp;lt;/earliest&amp;gt;
          &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
        &amp;lt;/search&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Mar 2018 03:08:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343100#M22316</guid>
      <dc:creator>brajaram</dc:creator>
      <dc:date>2018-03-09T03:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343101#M22317</link>
      <description>&lt;P&gt;Hey brajaram,&lt;/P&gt;

&lt;P&gt;You can refer the link below:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Viz/PanelreferenceforSimplifiedXML"&gt;http://docs.splunk.com/Documentation/Splunk/latest/Viz/PanelreferenceforSimplifiedXML&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Panel refresh&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;option name="refresh.auto.interval"&amp;gt;60&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also works with tokens if you want to allow the user to specify with a dashboard dropdown.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;option name="refresh.auto.interval"&amp;gt;$refresh_interval$&amp;lt;/option&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Dashboard input example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;     &amp;lt;input type="dropdown" token="refresh_interval" searchWhenChanged="true"&amp;gt;
       &amp;lt;label&amp;gt;Panel Refresh Override&amp;lt;/label&amp;gt;
       &amp;lt;choice value="60"&amp;gt;1 Minute&amp;lt;/choice&amp;gt;
       &amp;lt;choice value="300"&amp;gt;5 Minutes&amp;lt;/choice&amp;gt;
       &amp;lt;default&amp;gt;300&amp;lt;/default&amp;gt;
     &amp;lt;/input&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Let me know if this helps!!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 04:01:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343101#M22317</guid>
      <dc:creator>deepashri_123</dc:creator>
      <dc:date>2018-03-09T04:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343102#M22318</link>
      <description>&lt;P&gt;Yep, refresh.auto.interval works perfectly, thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 09 Mar 2018 04:08:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343102#M22318</guid>
      <dc:creator>brajaram</dc:creator>
      <dc:date>2018-03-09T04:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343103#M22319</link>
      <description>&lt;P&gt;This has been deprecated in 7.2.0&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2019 23:50:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343103#M22319</guid>
      <dc:creator>nick405060</dc:creator>
      <dc:date>2019-03-21T23:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to make a single panel in a dashboard autorun?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343104#M22320</link>
      <description>&lt;P&gt;Hi.&lt;/P&gt;

&lt;P&gt;¿Whats the new way to do that if...&lt;/P&gt;

&lt;P&gt;" $refresh_interval$"&lt;/P&gt;

&lt;P&gt;...was deprecated?&lt;/P&gt;

&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 13:02:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-make-a-single-panel-in-a-dashboard-autorun/m-p/343104#M22320</guid>
      <dc:creator>CARLOSEMONTESP</dc:creator>
      <dc:date>2019-10-30T13:02:06Z</dc:date>
    </item>
  </channel>
</rss>

