<?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: keep receiving error on two scheduled alerts? in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220074#M4012</link>
    <description>&lt;P&gt;It seems there are some real-time searches running and exceeding your system's limit. If you've access to the box, check processes (psef splunk) to see what searches are running and get more information based on sid. In fact, the data summary section in the default search page is also a real-time search so check if there multiple windows open.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jan 2017 16:13:34 GMT</pubDate>
    <dc:creator>somesoni2</dc:creator>
    <dc:date>2017-01-05T16:13:34Z</dc:date>
    <item>
      <title>keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220073#M4011</link>
      <description>&lt;P&gt;I have a DevOps test instance of splunk with some reports (that I run manually ad hoc) and two scheduled alerts.&lt;/P&gt;

&lt;P&gt;I keep receiving the following error.&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/2293i581A54B39852F52B/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;I am not sure I have the schedule alerts setup correctly.   I only have two with the following schedules....&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/2294i04F994730141103F/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;Any ideas?  Please advise.  &lt;/P&gt;

&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2017 15:49:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220073#M4011</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-05T15:49:42Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220074#M4012</link>
      <description>&lt;P&gt;It seems there are some real-time searches running and exceeding your system's limit. If you've access to the box, check processes (psef splunk) to see what searches are running and get more information based on sid. In fact, the data summary section in the default search page is also a real-time search so check if there multiple windows open.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2017 16:13:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220074#M4012</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-01-05T16:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220075#M4013</link>
      <description>&lt;P&gt;I will look into it, thank you&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jan 2017 16:18:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220075#M4013</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-05T16:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220076#M4014</link>
      <description>&lt;P&gt;Hi packet_hunter, &lt;/P&gt;

&lt;P&gt;You can try increasing your max number of real-time searches by modifying relevant real-time search settings in limits.conf (create limits.conf under /local rather than directly updating the one under /default) . &lt;/P&gt;

&lt;P&gt;limits.conf: &lt;/P&gt;

&lt;P&gt;base_max_searches = &lt;BR /&gt;
* A constant to add to the maximum number of searches, computed as a multiplier&lt;BR /&gt;
  of the CPUs.&lt;BR /&gt;
* Defaults to 6&lt;/P&gt;

&lt;P&gt;max_searches_per_cpu = &lt;BR /&gt;
* The maximum number of concurrent historical searches per CPU. The system-wide&lt;BR /&gt;
  limit of historical searches is computed as:&lt;BR /&gt;
  max_hist_searches =  max_searches_per_cpu x number_of_cpus + base_max_searches&lt;BR /&gt;
* Note: the maximum number of real-time searches is computed as:&lt;BR /&gt;
  max_rt_searches = max_rt_search_multiplier x max_hist_searches&lt;BR /&gt;
* Defaults to 1&lt;/P&gt;

&lt;P&gt;max_rt_search_multiplier = &lt;BR /&gt;
* A number by which the maximum number of historical searches is multiplied to&lt;BR /&gt;
  determine the maximum number of concurrent real-time searches&lt;BR /&gt;
* Note: the maximum number of real-time searches is computed as:&lt;BR /&gt;
  max_rt_searches = max_rt_search_multiplier x max_hist_searches&lt;BR /&gt;
* Defaults to 1&lt;/P&gt;

&lt;P&gt;Hope this helps. Thanks! &lt;BR /&gt;
Hunter&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 12:16:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220076#M4014</guid>
      <dc:creator>hunters_splunk</dc:creator>
      <dc:date>2020-09-29T12:16:23Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220077#M4015</link>
      <description>&lt;P&gt;Thank you for the advice.   I will keep this information for future use.  But our concern is that we did not have any real-time searches running just the two scheduled searches.   Still investigating.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 16:16:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220077#M4015</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-09T16:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220078#M4016</link>
      <description>&lt;P&gt;so I did a ps -ef |grep splunk  but I am not sure how to find real-time searching.... please provide more advise to find these rogue real-time searches   Thank you&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 16:29:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220078#M4016</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-09T16:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220079#M4017</link>
      <description>&lt;P&gt;It should say &lt;CODE&gt;search --id=rt_....&lt;/CODE&gt;.&lt;BR /&gt;
It should give you the user name as well towards the end.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 16:35:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220079#M4017</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-01-09T16:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220080#M4018</link>
      <description>&lt;P&gt;ok thank  you&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 16:39:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220080#M4018</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-09T16:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220081#M4019</link>
      <description>&lt;P&gt;at the moment I cannot find anything with id=rt... but when the message alerts again, I know how to find it.  thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 18:34:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220081#M4019</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-09T18:34:32Z</dc:date>
    </item>
    <item>
      <title>Re: keep receiving error on two scheduled alerts?</title>
      <link>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220082#M4020</link>
      <description>&lt;P&gt;fyi,  I found the problem, when I kick off the security app, a bunch of real-time searches occurred when the dashboard load....   |grep id=rt   revealed the issue.  Thanks again.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 21:35:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/keep-receiving-error-on-two-scheduled-alerts/m-p/220082#M4020</guid>
      <dc:creator>packet_hunter</dc:creator>
      <dc:date>2017-01-09T21:35:01Z</dc:date>
    </item>
  </channel>
</rss>

