<?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  can we detect excessive overlapping alerts? in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442876#M21219</link>
    <description>&lt;P&gt;We reach situations in which application teams set their alerts at the top of the hour and when we (the Splunk team) catch it, it might be too late.&lt;/P&gt;

&lt;P&gt;Is there a way to produce a report which lists the run times and detect excessive usage times? &lt;/P&gt;</description>
    <pubDate>Thu, 20 Dec 2018 17:02:13 GMT</pubDate>
    <dc:creator>ddrillic</dc:creator>
    <dc:date>2018-12-20T17:02:13Z</dc:date>
    <item>
      <title>How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442876#M21219</link>
      <description>&lt;P&gt;We reach situations in which application teams set their alerts at the top of the hour and when we (the Splunk team) catch it, it might be too late.&lt;/P&gt;

&lt;P&gt;Is there a way to produce a report which lists the run times and detect excessive usage times? &lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 17:02:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442876#M21219</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-12-20T17:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442877#M21220</link>
      <description>&lt;P&gt;Yeah, you can use the internal index for this. You should explicitly add savedsearch_name for this  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal savedsearch_name=*
| timechart max(run_time) AS run_time by savedsearch_name
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Dec 2018 19:00:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442877#M21220</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-12-20T19:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442878#M21221</link>
      <description>&lt;P&gt;Thank you @skoelpin.&lt;/P&gt;

&lt;P&gt;I changed the &lt;CODE&gt;max&lt;/CODE&gt; to &lt;CODE&gt;sum&lt;/CODE&gt; and we can see - &lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6278i28C68C170BBC2442/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;We can see that at each quarter of the hour we have peak usage. &lt;BR /&gt;
Can we find out from &lt;CODE&gt;_internal&lt;/CODE&gt; how many searches were  skipped?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 21:41:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442878#M21221</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-12-20T21:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442879#M21222</link>
      <description>&lt;P&gt;Yes, you sure can! &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=scheduled status=skipped NOT "_ACCELERATE*"
| timechart count by savedsearch_name
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Dec 2018 21:46:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442879#M21222</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-12-20T21:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442880#M21223</link>
      <description>&lt;P&gt;Just ran -&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=scheduler status=skipped NOT "_ACCELERATE*"
 | timechart count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It shows -&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6279i52561860455BD0F3/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 21:56:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442880#M21223</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-12-20T21:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442881#M21224</link>
      <description>&lt;P&gt;The totals for an hour are  -&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="alt text"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/6280i43B4D73AABACEF62/image-size/large?v=v2&amp;amp;px=999" role="button" title="alt text" alt="alt text" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 21:57:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442881#M21224</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-12-20T21:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442882#M21225</link>
      <description>&lt;P&gt;Yeah, you have a problem with skips at 4am. You should trend this over time by using &lt;CODE&gt;timewrap&lt;/CODE&gt; to see if there's a pattern. Most likely, other searches are competing for resources and they run long and cause skips. You can fix this by changing search priroty away from 0 to auto.  &lt;/P&gt;

&lt;P&gt;You can split by &lt;CODE&gt;savedsearch_name&lt;/CODE&gt; or get a total over a span of time by adding &lt;CODE&gt;span=1h&lt;/CODE&gt;. We use this search to alert us and cut a ticket when we start skipping. Skips are unacceptable for us&lt;/P&gt;</description>
      <pubDate>Thu, 20 Dec 2018 22:09:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442882#M21225</guid>
      <dc:creator>skoelpin</dc:creator>
      <dc:date>2018-12-20T22:09:02Z</dc:date>
    </item>
    <item>
      <title>Re: How  can we detect excessive overlapping alerts?</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442883#M21226</link>
      <description>&lt;P&gt;Much appreciated  @skoelpin.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Dec 2018 20:39:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-can-we-detect-excessive-overlapping-alerts/m-p/442883#M21226</guid>
      <dc:creator>ddrillic</dc:creator>
      <dc:date>2018-12-21T20:39:31Z</dc:date>
    </item>
  </channel>
</rss>

