<?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 get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app? in Splunk Enterprise Security</title>
    <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129924#M371</link>
    <description>&lt;P&gt;Is there any list available anywhere which contains all the correlation searches and their description together? I would like to present it to some stakeholders, but documentation contains only a few of them. I'm looking for something like the "Search View matrix" in the User Guide of the Splunk Enterprise Security app, but with all the correlation searches in it. &lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Miklos&lt;/P&gt;</description>
    <pubDate>Thu, 28 May 2015 16:08:53 GMT</pubDate>
    <dc:creator>mjuhasz</dc:creator>
    <dc:date>2015-05-28T16:08:53Z</dc:date>
    <item>
      <title>How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129924#M371</link>
      <description>&lt;P&gt;Is there any list available anywhere which contains all the correlation searches and their description together? I would like to present it to some stakeholders, but documentation contains only a few of them. I'm looking for something like the "Search View matrix" in the User Guide of the Splunk Enterprise Security app, but with all the correlation searches in it. &lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Miklos&lt;/P&gt;</description>
      <pubDate>Thu, 28 May 2015 16:08:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129924#M371</guid>
      <dc:creator>mjuhasz</dc:creator>
      <dc:date>2015-05-28T16:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129925#M372</link>
      <description>&lt;P&gt;Yes. Use a REST search to expose the information in a table with the fields you're interested in. Example: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/alerts/correlationsearches | rename eai:acl.app as app, title as csearch_name | table app security_domain csearch_name description
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 28 May 2015 19:09:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129925#M372</guid>
      <dc:creator>ekost</dc:creator>
      <dc:date>2015-05-28T19:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129926#M373</link>
      <description>&lt;P&gt;Thank you! Elegant. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jun 2015 12:53:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129926#M373</guid>
      <dc:creator>mjuhasz</dc:creator>
      <dc:date>2015-06-03T12:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129927#M374</link>
      <description>&lt;P&gt;And if you want to include the actual search text, for analysis of what rules use what data sources for example, you can extend this answer to:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest /services/alerts/correlationsearches 
| rename eai:acl.app as app, title as csearch_name 
| join type=outer app csearch_name [ rest /services/saved/searches 
    | rename eai:acl.app as app, title as csearch_name search as csearch 
    | table app csearch_name csearch ] 
| table app security_domain csearch_name description csearch
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 18 May 2016 16:42:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129927#M374</guid>
      <dc:creator>Jason</dc:creator>
      <dc:date>2016-05-18T16:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129928#M375</link>
      <description>&lt;P&gt;For ES 4.6 and later, the REST endpoint to call has changed. &lt;BR /&gt;
Sample from the &lt;A href="http://docs.splunk.com/Documentation/ES/4.7.0/Admin/Upgradecorrelationsearches"&gt;ES admin docs&lt;/A&gt;: &lt;CODE&gt;| rest splunk_server=local count=0 /services/saved/searches | where match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]") | rename eai:acl.app as app, title as csearch_name, action.correlationsearch.label as csearch_label, action.notable.param.security_domain as security_domain | table csearch_name, csearch_label, app, security_domain, description&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2017 14:48:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129928#M375</guid>
      <dc:creator>ekost</dc:creator>
      <dc:date>2017-05-04T14:48:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129929#M376</link>
      <description>&lt;P&gt;Thank you for the update!&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2017 14:57:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129929#M376</guid>
      <dc:creator>mjuhasz</dc:creator>
      <dc:date>2017-05-05T14:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a complete list with descriptions of correlation searches in the Splunk Enterprise Security app?</title>
      <link>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129930#M377</link>
      <description>&lt;P&gt;Using the search provide in the ES documentation did not list all of the correlation searches in our environment, especially the ones in other apps. I used this search to find them all   &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;| rest /servicesNS/-/-/saved/searches splunk_server=local | where match('action.correlationsearch.enabled', "1|[Tt]|[Tt][Rr][Uu][Ee]")&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2019 13:23:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Enterprise-Security/How-to-get-a-complete-list-with-descriptions-of-correlation/m-p/129930#M377</guid>
      <dc:creator>martinr8</dc:creator>
      <dc:date>2019-07-16T13:23:22Z</dc:date>
    </item>
  </channel>
</rss>

