<?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: timepicker and real time in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113420#M29825</link>
    <description>&lt;P&gt;This is the only way I found to disable realtime searches. The real_time_menu was not in the documentation that I could see (but did see it in splunk answers)&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.1/Search/Restrictrealtimesearch" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/6.0.1/Search/Restrictrealtimesearch&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I also found someone else who was trying to do this as well:&lt;BR /&gt;
&lt;A href="http://answers.splunk.com/answers/88356/remove-real-time-from-dashboard-panel" target="_blank"&gt;http://answers.splunk.com/answers/88356/remove-real-time-from-dashboard-panel&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 15:39:15 GMT</pubDate>
    <dc:creator>aelliott</dc:creator>
    <dc:date>2020-09-28T15:39:15Z</dc:date>
    <item>
      <title>timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113419#M29824</link>
      <description>&lt;P&gt;Hi friends&lt;/P&gt;

&lt;P&gt;I am using timepicker to select a time range, and pass it to dbquery command to search the database. &lt;/P&gt;

&lt;P&gt;But the timepicker is showing realtime menu, which is not compatible with dbquery. I want to disable it. Splunk 6.0.1&lt;/P&gt;

&lt;P&gt;I have tried the documentation &lt;BR /&gt;
[real_time_menu]&lt;BR /&gt;
disabled = 1&lt;/P&gt;

&lt;P&gt;and also &lt;/P&gt;

&lt;P&gt;[real_time_menu]&lt;BR /&gt;
disabled = true&lt;/P&gt;

&lt;P&gt;with no sucess. In this version is there another way to disable it?&lt;/P&gt;

&lt;P&gt;I also want to disable Advanced menu in datepicker.&lt;/P&gt;

&lt;P&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:39:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113419#M29824</guid>
      <dc:creator>albertohontoria</dc:creator>
      <dc:date>2020-09-28T15:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113420#M29825</link>
      <description>&lt;P&gt;This is the only way I found to disable realtime searches. The real_time_menu was not in the documentation that I could see (but did see it in splunk answers)&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/6.0.1/Search/Restrictrealtimesearch" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/6.0.1/Search/Restrictrealtimesearch&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I also found someone else who was trying to do this as well:&lt;BR /&gt;
&lt;A href="http://answers.splunk.com/answers/88356/remove-real-time-from-dashboard-panel" target="_blank"&gt;http://answers.splunk.com/answers/88356/remove-real-time-from-dashboard-panel&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:39:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113420#M29825</guid>
      <dc:creator>aelliott</dc:creator>
      <dc:date>2020-09-28T15:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113421#M29826</link>
      <description>&lt;P&gt;I am too not able to accomplish this in Splunk 6.0.1. I even tried deleting the Realtime entries (all of them) from etc/system/default/times.conf (after creating a backup and restarted splunk).&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2014 23:59:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113421#M29826</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2014-01-14T23:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113422#M29827</link>
      <description>&lt;P&gt;The easy way ist to hide that section with CSS &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;
Each section (Real-time, realtive, datetime, ... ) has a DOM-ID&lt;/P&gt;

&lt;P&gt;Hide that ID with an CSS :&lt;/P&gt;

&lt;P&gt;[hash]realtime_view6562 {&lt;BR /&gt;
display: none;&lt;BR /&gt;
}&lt;/P&gt;

&lt;P&gt;the number (6562) behind "realtime_view" is dynamic - it depends on your dashbaord - you have to find it out with DOM-Tools - like "firebug" (Mozilla FF) &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2014 10:14:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113422#M29827</guid>
      <dc:creator>Rocket66</dc:creator>
      <dc:date>2014-01-15T10:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113423#M29828</link>
      <description>&lt;P&gt;is the DOM-ID will always be the same for advanced menu. There are so many dashboards, it will be difficult to do for all dashboards.. is there any generic way of doing it..&lt;/P&gt;</description>
      <pubDate>Wed, 29 Oct 2014 09:30:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113423#M29828</guid>
      <dc:creator>srinathd</dc:creator>
      <dc:date>2014-10-29T09:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113424#M29829</link>
      <description>&lt;P&gt;This can be done using CSS - either within a css file in your app's static folder that is referenced by your dashboard xml, or within dashboard.css to apply across all dashboards.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;/* Hide Real-time Options (Splunk 6.4.1) */
.shared-timerangepicker-dialog div.accordion-group:nth-child(3),
.shared-timerangepicker-dialog-presets .presets-group:first-child,
.shared-timerangepicker-dialog-presets .presets-divider-wrap:first-child
{   
    display: none !important; 
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 21 Jul 2016 02:29:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113424#M29829</guid>
      <dc:creator>DaveAW</dc:creator>
      <dc:date>2016-07-21T02:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: timepicker and real time</title>
      <link>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113425#M29830</link>
      <description>&lt;P&gt;Yes! That's more robust and versatile!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jul 2016 11:39:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/timepicker-and-real-time/m-p/113425#M29830</guid>
      <dc:creator>Rocket66</dc:creator>
      <dc:date>2016-07-21T11:39:14Z</dc:date>
    </item>
  </channel>
</rss>

