<?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: How to filter out only the accelerated reports in splunk ? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339372#M62643</link>
    <description>&lt;P&gt;HI @Hemnaath,&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;auto_summarize=1&lt;/CODE&gt; in savedsearch says it's accelerated. &lt;/P&gt;

&lt;P&gt;Please check "auto summarization options" in below link.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.0.1/Admin/Savedsearchesconf"&gt;https://docs.splunk.com/Documentation/Splunk/7.0.1/Admin/Savedsearchesconf&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can do it practically, just check "Enabling report acceleration when you create a report" in below link.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Manageacceleratedsearchsummaries"&gt;http://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Manageacceleratedsearchsummaries&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I hope it will help you.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2017 17:09:31 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2017-12-13T17:09:31Z</dc:date>
    <item>
      <title>How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339366#M62637</link>
      <description>&lt;P&gt;Hi All, I need to filter out only the reports that are configured as Accelerated Reports in searches,Reports and Alerts. I had run the below query to filter out the Accelerated Reports but it gives me each time a different result.  So please guide me whether the below search query needs to include any other information.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*scheduler.log*  savedsearch_name=*ACCELERATE* | dedup savedsearch_name host | table savedsearch_name host 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;thanks in advance. &lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 16:23:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339366#M62637</guid>
      <dc:creator>Hemnaath</dc:creator>
      <dc:date>2017-12-13T16:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339367#M62638</link>
      <description>&lt;P&gt;hello there,&lt;/P&gt;

&lt;P&gt;give this a try:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest splunk_server=local /servicesNS/-/-/saved/searches
| search auto_summarize = 1
| table title search eai:acl.app eai:acl.owner auto_summarize.dispatch.earliest_time
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;hope it helps&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 16:35:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339367#M62638</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-12-13T16:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339368#M62639</link>
      <description>&lt;P&gt;HI @Hemnaath,&lt;/P&gt;

&lt;P&gt;Can you please try this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /servicesNS/-/-/saved/searches splunk_server=local | where auto_summarize=1 | table  title
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 16:38:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339368#M62639</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2017-12-13T16:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339369#M62640</link>
      <description>&lt;P&gt;Hi Kamlesh, thanks for your effort on this when I execute the above query, I am getting some reports details with statistics count as 85, but how do I confirm whether they are configured as Accelerated Reports.&lt;/P&gt;

&lt;P&gt;And also I am getting some statistics count as 261 when I execute the below query.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;i`ndex=_internal source=*scheduler.log*  savedsearch_name=*ACCELERATE* | dedup savedsearch_name host | table savedsearch_name host` 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Kindly guide me on this.&lt;BR /&gt;
thanks in advances. &lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 16:57:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339369#M62640</guid>
      <dc:creator>Hemnaath</dc:creator>
      <dc:date>2017-12-13T16:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339370#M62641</link>
      <description>&lt;P&gt;Hi Adonio, thanks for your effort on this, After executing the above query, I am getting some report details with statistics count as 85, So it mean we have 85 reports configured as Accelerated Reports or how do I confirm that they are all configured as Accelerated Reports.&lt;/P&gt;

&lt;P&gt;Also I am getting statistics count as 261 when I execute the below query, so what is the difference between savedsearch_name=&lt;EM&gt;ACCELERATE&lt;/EM&gt; and your query. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*scheduler.log*  savedsearch_name=*ACCELERATE* | dedup savedsearch_name host | table savedsearch_name host 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Kindly guide me on this.&lt;BR /&gt;
thanks in advance. &lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 16:59:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339370#M62641</guid>
      <dc:creator>Hemnaath</dc:creator>
      <dc:date>2017-12-13T16:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339371#M62642</link>
      <description>&lt;P&gt;not sure what do you mean by statistics count, but if in the table has 85 rows, with 85 different title values, then you have 85 accelerated reports... &lt;BR /&gt;
this search confirmed these reports are accelerated, you can go to the relevant savedsearches.conf or navigate to reports page of an app and hit the little &amp;gt; icon next to report name and make sure that Acceleration is indeed "enabled"&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 17:06:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339371#M62642</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2017-12-13T17:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339372#M62643</link>
      <description>&lt;P&gt;HI @Hemnaath,&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;auto_summarize=1&lt;/CODE&gt; in savedsearch says it's accelerated. &lt;/P&gt;

&lt;P&gt;Please check "auto summarization options" in below link.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/Splunk/7.0.1/Admin/Savedsearchesconf"&gt;https://docs.splunk.com/Documentation/Splunk/7.0.1/Admin/Savedsearchesconf&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You can do it practically, just check "Enabling report acceleration when you create a report" in below link.&lt;/P&gt;

&lt;P&gt;&lt;A href="http://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Manageacceleratedsearchsummaries"&gt;http://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Manageacceleratedsearchsummaries&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I hope it will help you.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 17:09:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339372#M62643</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2017-12-13T17:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339373#M62644</link>
      <description>&lt;P&gt;hey in the splunk search console we could see Events, Pattern, statistics, Visualization tabs right, in these under statistic tab, I could see 85 count. &lt;/P&gt;

&lt;P&gt;Yes I have gone through each reports under --&amp;gt; settings--&amp;gt;searches,report,alerts,--&amp;gt; Specific Report name--&amp;gt;icon with thunder symbol and when placed over the symbol it pops out - This model is accelerated.&lt;/P&gt;

&lt;P&gt;thanks for your help on this.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 18:00:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339373#M62644</guid>
      <dc:creator>Hemnaath</dc:creator>
      <dc:date>2017-12-13T18:00:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339374#M62645</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/212420"&gt;@Hemnaath&lt;/a&gt;,&lt;/P&gt;

&lt;P&gt;you are welcome,&lt;BR /&gt;
be carefull with your searches and the MC (splunk monitoring console). i reccomend to relay on the searches myself and &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/127939"&gt;@kamlesh_vaghela&lt;/a&gt; provided in answers here.&lt;BR /&gt;
pasy attention of you see a pattern like &lt;EM&gt;&lt;EM&gt;ACCELERATE_DM&lt;/EM&gt;&lt;/EM&gt; that means its a data model acceleration and not report acceleration.&lt;/P&gt;

&lt;P&gt;if that answers your question, kindly mark question as answered and upvote any comment / answer that helped.&lt;/P&gt;

&lt;P&gt;cheers&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:17:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339374#M62645</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2020-09-29T17:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339375#M62646</link>
      <description>&lt;P&gt;hey then how to find out the accelerated reports configured in our environment. So you mean to say that data model acceleration is different from Accelerated reports.&lt;/P&gt;

&lt;P&gt;When I execute this query i am getting below results:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  index=_internal source=*scheduler.log*  savedsearch_name=*ACCELERATE* | dedup savedsearch_name host | table savedsearch_name host  

_ACCELERATE_D4D707D0-38F3-4F47-A1AA-9DD305E110D0_DA-deployment_monitor_nobody_66aacf41e8ea33d9_ACCELERATE_  
_ACCELERATE_DM_Splunk_SA_CIM_Network_Sessions_ACCELERATE_   
_ACCELERATE_DM_Splunk_SA_CIM_Network_Resolution_ACCELERATE_ 
_ACCELERATE_C090FDA2-105E-4875-A110-3F13FF986151_SA-critical_security_controls_admin_85ce9a3b65831f9d_ACCELERATE_   
_ACCELERATE_C090FDA2-105E-4875-A110-3F13FF986151_SA-critical_security_controls_admin_3c59e7c4c93a6544_ACCELERATE_
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Kindly guide me whether these  reports are accelerated report or data model acceleration. &lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 18:15:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339375#M62646</guid>
      <dc:creator>Hemnaath</dc:creator>
      <dc:date>2017-12-13T18:15:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339376#M62647</link>
      <description>&lt;P&gt;yes ... look at the format&lt;BR /&gt;
&lt;EM&gt;ACCELERATE_D4D707D0-38F3-4F47-A1AA-9DD305E110D0_DA-deployment_monitor_nobody_66aacf41e8ea33d9_ACCELERATE&lt;/EM&gt; &lt;BR /&gt;
_ACCELERATE_SplunkServerGUID_AppName_Owner_SearchID_ACCELERATE&lt;/P&gt;

&lt;P&gt;OR&lt;BR /&gt;
&lt;EM&gt;ACCELERATE_DM_Splunk_SA_CIM_Network_Sessions_ACCELERATE&lt;/EM&gt;&lt;BR /&gt;
_ACCELERATE_DM_DataModelName_ACCELERATE&lt;/P&gt;

&lt;P&gt;please use the search we provided above with the | rest command&lt;BR /&gt;
read here about the difference between Data Model Acceleration and Report Acceleration:&lt;BR /&gt;
&lt;A href="http://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Acceleratedatamodels" target="_blank"&gt;http://docs.splunk.com/Documentation/Splunk/7.0.1/Knowledge/Acceleratedatamodels&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:17:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339376#M62647</guid>
      <dc:creator>adonio</dc:creator>
      <dc:date>2020-09-29T17:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to filter out only the accelerated reports in splunk ?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339377#M62648</link>
      <description>&lt;P&gt;thanks adonio... let me check the report once again.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 19:23:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-to-filter-out-only-the-accelerated-reports-in-splunk/m-p/339377#M62648</guid>
      <dc:creator>Hemnaath</dc:creator>
      <dc:date>2017-12-13T19:23:45Z</dc:date>
    </item>
  </channel>
</rss>

