<?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: Summary Index Reports in Knowledge Management</title>
    <link>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172847#M1622</link>
    <description>&lt;P&gt;Hi, for those who may be intereseted, I've now got this to work.&lt;/P&gt;

&lt;P&gt;This is the query I use in the scheduled report:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index= main tags.transactionName = "Send Email Alert"  auditType="TxSucceeded"  
| eval shortForm='detail.formId'."  " 
| eval shortForm =  substr(shortForm, 1, 6) 
| sort 0  detail.messageId  
| stats dc(detail.messageId) first(shortForm) as shortForm by "detail.messageId" 
| sichart count by shortForm
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And the following is how I retrieve the figures:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=summary source="SA Letters Suppressed Summary Index Test" | chart count by shortForm  | eval pieSlice=shortForm  + " " + count  | fields pieSlice, count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I hope this helps.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
    <pubDate>Fri, 14 Aug 2015 12:45:17 GMT</pubDate>
    <dc:creator>IRHM73</dc:creator>
    <dc:date>2015-08-14T12:45:17Z</dc:date>
    <item>
      <title>Summary Index Reports</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172844#M1619</link>
      <description>&lt;P&gt;Hi, I wonder whether someone could help me please.&lt;/P&gt;

&lt;P&gt;I've put together the search below to create a Summary Index&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;tags.transactionName = "Send Email Alert"  auditType="TxSucceeded"  | eval shortForm='detail.formId'."  " | eval shortForm =  substr(shortForm, 1, 6) | sort 0  detail.messageId  | dedup detail.messageId  | chart count by shortForm  | eval pieSlice=shortForm  + " " + count  | fields pieSlice, count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The problem I now have is trying to retrieve the results I know that I need to use "index=summary source="SA Tester" at the beginning of the query but despite several combinations I can't retrieve the results.&lt;/P&gt;

&lt;P&gt;I've managed a very simple example of this, but this is more complicated than the tutorials I've been using.&lt;/P&gt;

&lt;P&gt;I just wondered whether someone may be able to look at this and let me know where I'm going wrong.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 07:55:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172844#M1619</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2015-08-13T07:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Index Reports</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172845#M1620</link>
      <description>&lt;P&gt;Is your populating search really named &lt;EM&gt;EXACTLY&lt;/EM&gt; &lt;CODE&gt;Index Report Name&lt;/CODE&gt;?&lt;BR /&gt;
Is your populating search &lt;CODE&gt;enabled&lt;/CODE&gt;?&lt;BR /&gt;
Did you click &lt;CODE&gt;Enable&lt;/CODE&gt; under &lt;CODE&gt;Summary Indexing&lt;/CODE&gt;?&lt;BR /&gt;
What &lt;CODE&gt;index&lt;/CODE&gt; did you put in the &lt;CODE&gt;Select the Summary Index&lt;/CODE&gt; field (is it really &lt;CODE&gt;summary&lt;/CODE&gt;)?&lt;BR /&gt;
Are you using that same &lt;CODE&gt;index&lt;/CODE&gt; in your search?&lt;BR /&gt;
Are you running your search on the same Search Head that is running the populating search (maybe behind a VIP to more than 1 Search Head)?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 17:12:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172845#M1620</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-08-13T17:12:01Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Index Reports</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172846#M1621</link>
      <description>&lt;P&gt;Hi @woodcock, thank you for taking the time to come back to me with this.&lt;/P&gt;

&lt;P&gt;In answer to your questions:&lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;Original post edited to reflect true name of report.&lt;/LI&gt;
&lt;LI&gt;Yes the populating search is enabled.&lt;/LI&gt;
&lt;LI&gt;Yes, when I set up the scheduled search I enabled 'Summary Indexing'&lt;/LI&gt;
&lt;LI&gt;Yes the index is called "summary"&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;I can confirm that I'm able to see the events so I think but it's just putting this into the chart which appears to be the problem.&lt;/P&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;P&gt;I must admit I'm not soo sure what the answer is here. All I can say is that using a simple query I've been able to retrieve the 'Summary Index' results, and I've followed the same method.&lt;/P&gt;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;I hope this helps.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 14 Aug 2015 06:12:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172846#M1621</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2015-08-14T06:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: Summary Index Reports</title>
      <link>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172847#M1622</link>
      <description>&lt;P&gt;Hi, for those who may be intereseted, I've now got this to work.&lt;/P&gt;

&lt;P&gt;This is the query I use in the scheduled report:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index= main tags.transactionName = "Send Email Alert"  auditType="TxSucceeded"  
| eval shortForm='detail.formId'."  " 
| eval shortForm =  substr(shortForm, 1, 6) 
| sort 0  detail.messageId  
| stats dc(detail.messageId) first(shortForm) as shortForm by "detail.messageId" 
| sichart count by shortForm
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;And the following is how I retrieve the figures:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=summary source="SA Letters Suppressed Summary Index Test" | chart count by shortForm  | eval pieSlice=shortForm  + " " + count  | fields pieSlice, count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I hope this helps.&lt;/P&gt;

&lt;P&gt;Many thanks and kind regards&lt;/P&gt;

&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 14 Aug 2015 12:45:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Knowledge-Management/Summary-Index-Reports/m-p/172847#M1622</guid>
      <dc:creator>IRHM73</dc:creator>
      <dc:date>2015-08-14T12:45:17Z</dc:date>
    </item>
  </channel>
</rss>

