<?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 What does &amp;quot;summariesonly' mean in this Enterprise Security search? in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/325157#M3009</link>
    <description>&lt;P&gt;I found this search in ES Content Updates&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats `summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Network_Traffic where All_Traffic.app=tor AND All_Traffic.action=allowed by All_Traffic.src_ip All_Traffic.dest_ip All_Traffic.dest_port All_Traffic.action | `ctime(firstTime)` | `ctime(lastTime)` | `drop_dm_object_name("All_Traffic")`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;What mean &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;`summariesonly`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And what should I do to make this search working?&lt;/P&gt;</description>
    <pubDate>Tue, 24 Oct 2017 15:50:44 GMT</pubDate>
    <dc:creator>test_qweqwe</dc:creator>
    <dc:date>2017-10-24T15:50:44Z</dc:date>
    <item>
      <title>What does "summariesonly' mean in this Enterprise Security search?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/325157#M3009</link>
      <description>&lt;P&gt;I found this search in ES Content Updates&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| tstats `summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Network_Traffic where All_Traffic.app=tor AND All_Traffic.action=allowed by All_Traffic.src_ip All_Traffic.dest_ip All_Traffic.dest_port All_Traffic.action | `ctime(firstTime)` | `ctime(lastTime)` | `drop_dm_object_name("All_Traffic")`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;What mean &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;`summariesonly`
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And what should I do to make this search working?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Oct 2017 15:50:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/325157#M3009</guid>
      <dc:creator>test_qweqwe</dc:creator>
      <dc:date>2017-10-24T15:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: What does "summariesonly' mean in this Enterprise Security search?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/325158#M3010</link>
      <description>&lt;P&gt;In this search &lt;CODE&gt;summariesonly&lt;/CODE&gt; referes to a macro which indicates (summariesonly=true) meaning only search data that has been summarized by the data model acceleration. Summarized data will be available once you've enabled data model acceleration for the data model Network_Traffic. &lt;/P&gt;

&lt;P&gt;So first: &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;&lt;P&gt;Check that the data model is accelerated:&lt;BR /&gt;
Settings&amp;gt;data models &amp;gt;  &amp;gt; edit acceleration&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;Is the data model complete ~100% or always stuck in building ? If stuck building, is the scheduled search able to run? Here you can check scheduler.log and look for &lt;BR /&gt;
&lt;CODE&gt;index=_internal source=*scheduler.log* "*Network_Traffic*"&lt;/CODE&gt;&lt;/P&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;is the status=successful for these searches?&lt;/P&gt;

&lt;P&gt;DMA searches are scheduled searches that run every 5 min to keep the summarized data up to date. Here is an example from scheduler.log of a successful run for the data model "Splunk_Audit" &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=_internal source=*scheduler.log* "*Splunk_Audit*"&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;10-24-2017 12:40:39.875 -0400 INFO  SavedSplunker - savedsearch_id="nobody;Splunk_SA_CIM;&lt;EM&gt;ACCELERATE_DM_Splunk_SA_CIM_Splunk_Audit.View_Activity_ACCELERATE&lt;/EM&gt;", search_type="datamodel_acceleration", user="nobody", app="Splunk_SA_CIM", savedsearch_name="&lt;EM&gt;ACCELERATE_DM_Splunk_SA_CIM_Splunk_Audit.View_Activity_ACCELERATE&lt;/EM&gt;", priority=highest, status=success, digest_mode=1, scheduled_time=1508863200, window_time=0, dispatch_time=1508863201, run_time=20.723, result_count=21, alert_actions="", sid="scheduler_&lt;EM&gt;nobody_U3BsdW5rX1NBX0NJTQ&lt;/EM&gt;_RMD5d055c6aa87889902_at_1508863200_2166", suppressed=0, thread_id="AlertNotifierWorker-0"&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;if still having issues then run the following search to determine the actual search being run when the scheduled search for the data model acceleration runs:&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;| rest splunk_server=local /services/datamodel/acceleration | fields title search&lt;/CODE&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;copy the value from the search field for the relevant data model and run that search manually to see if there are any issues running that search&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;check data model and knowledge object permissions and the app context you are running the search from&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 29 Sep 2020 16:24:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/325158#M3010</guid>
      <dc:creator>rphillips_splk</dc:creator>
      <dc:date>2020-09-29T16:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: What does "summariesonly' mean in this Enterprise Security search?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/538768#M9682</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;thanks for your detailed answer. I have just realized after running :&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rest splunk_server=local /services/datamodel/acceleration | fields title search&lt;/LI-CODE&gt;&lt;P&gt;that my Endpoint Datamodel has an empty search while all the others have one in place.&lt;/P&gt;&lt;P&gt;What might be the reason for that?&lt;/P&gt;&lt;P&gt;I have manually rebuilt the acceleration. Will this do the trick?&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Feb 2021 13:54:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/What-does-quot-summariesonly-mean-in-this-Enterprise-Security/m-p/538768#M9682</guid>
      <dc:creator>b_chris21</dc:creator>
      <dc:date>2021-02-05T13:54:06Z</dc:date>
    </item>
  </channel>
</rss>

