<?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: List correlation searches with number of alerts in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688978#M234828</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;do you know how I could obtain this information?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 29 May 2024 11:09:51 GMT</pubDate>
    <dc:creator>PleaseHelp</dc:creator>
    <dc:date>2024-05-29T11:09:51Z</dc:date>
    <item>
      <title>List correlation searches with number of alerts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688969#M234826</link>
      <description>&lt;P&gt;&lt;A href="https://docs.splunk.com/Documentation/ES/7.3.1/Admin/Listcorrelationsearches" target="_blank" rel="noopener"&gt;https://docs.splunk.com/Documentation/ES/7.3.1/Admin/Listcorrelationsearches&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Hi, I'm using the searches mentioned in the documentation. There is a field named&amp;nbsp;triggered_alert_count which gives me what I want but it returns the same number of alerts across all time ranges.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="css"&gt;| rest splunk_server=local count=0 /services/saved/searches
| rename eai:acl.app as app, title as csearch_name, action.correlationsearch.label as csearch_label, action.notable.param.security_domain as security_domain, triggered_alert_count as number_of_alerts
| search app="SplunkEnterpriseSecuritySuite"
| table number_of_alerts, csearch_label, app, security_domain, description&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ideally I would like to see the total number of alerts as far back as Splunk remembers. Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 09:10:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688969#M234826</guid>
      <dc:creator>PleaseHelp</dc:creator>
      <dc:date>2024-05-29T09:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: List correlation searches with number of alerts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688971#M234827</link>
      <description>&lt;P&gt;As the documentation says, the ReST API that you are using returns information about the search (definition). These are not events and do not have timestamps (per se), so you are getting all the definitions already.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 09:53:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688971#M234827</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-05-29T09:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: List correlation searches with number of alerts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688978#M234828</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;do you know how I could obtain this information?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2024 11:09:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688978#M234828</guid>
      <dc:creator>PleaseHelp</dc:creator>
      <dc:date>2024-05-29T11:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: List correlation searches with number of alerts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688980#M234829</link>
      <description>&lt;P&gt;You could try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| rest /servicesNS/-/-/alerts/fired_alerts&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 29 May 2024 11:36:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/688980#M234829</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-05-29T11:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: List correlation searches with number of alerts</title>
      <link>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/689281#M234901</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;I suppose that this query works for you :&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=notable
| stats count as alert_num by rule_name
| rename rule_name as csearch_label
| lookup savedsearches csearch_label as csearch_label OUTPUTNEW action.notable.param.security_domain as security_domain, description, eai:acl.app as app
| search app="SplunkEnterpriseSecuritySuite"
| table alert_num, csearch_label, app, security_domain, description | sort - alert_num&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 01 Jun 2024 08:04:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/List-correlation-searches-with-number-of-alerts/m-p/689281#M234901</guid>
      <dc:creator>marysan</dc:creator>
      <dc:date>2024-06-01T08:04:36Z</dc:date>
    </item>
  </channel>
</rss>

