<?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: Splunk alert to get consecutive errors from logs in Alerting</title>
    <link>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192588#M12416</link>
    <description>&lt;P&gt;Please show examples of the logs you're using - specifically show the log entries that hold the data upon which you need to search. Also, please clarify what you mean by "consecutively" in this context. Is this simply a count of &amp;gt; 25 times a particular error has happened within the last three hours? Is it a specific series of 25 events in a certain order?&lt;/P&gt;</description>
    <pubDate>Mon, 11 May 2015 19:59:57 GMT</pubDate>
    <dc:creator>jtrucks</dc:creator>
    <dc:date>2015-05-11T19:59:57Z</dc:date>
    <item>
      <title>Splunk alert to get consecutive errors from logs</title>
      <link>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192587#M12415</link>
      <description>&lt;P&gt;Hello Support,&lt;/P&gt;

&lt;P&gt;I need a query to get all the errors/exception which are occuring consecutively for more than 25 times in last 3 hours? Could you help?&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Ritwik&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 19:26:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192587#M12415</guid>
      <dc:creator>ritwikva</dc:creator>
      <dc:date>2015-05-11T19:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk alert to get consecutive errors from logs</title>
      <link>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192588#M12416</link>
      <description>&lt;P&gt;Please show examples of the logs you're using - specifically show the log entries that hold the data upon which you need to search. Also, please clarify what you mean by "consecutively" in this context. Is this simply a count of &amp;gt; 25 times a particular error has happened within the last three hours? Is it a specific series of 25 events in a certain order?&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 19:59:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192588#M12416</guid>
      <dc:creator>jtrucks</dc:creator>
      <dc:date>2015-05-11T19:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk alert to get consecutive errors from logs</title>
      <link>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192589#M12417</link>
      <description>&lt;P&gt;Hello Jtrucks,&lt;/P&gt;

&lt;P&gt;Thanks for the quick reply.&lt;/P&gt;

&lt;P&gt;Here is an example of the log entry&lt;/P&gt;

&lt;P&gt;May 11, 2015 3:38:30 PM org.apache.axis2.transport.http.HTTPSender sendViaPost&lt;BR /&gt;
INFO: Unable to sendViaPost to url[&lt;A href="http://customer.xxx.com:19100/CashCRUDWebservice/endpoints"&gt;http://customer.xxx.com:19100/CashCRUDWebservice/endpoints&lt;/A&gt;]&lt;BR /&gt;
java.net.SocketTimeoutException: Read timed out&lt;BR /&gt;
    at java.net.SocketInputStream.socketRead0(Native Method)&lt;BR /&gt;
    at java.net.SocketInputStream.read(SocketInputStream.java:152)&lt;BR /&gt;
    at java.net.SocketInputStream.read(SocketInputStream.java:122)&lt;BR /&gt;
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)&lt;BR /&gt;
    at java.io.BufferedInputStream.read(BufferedInputStream.java:254)&lt;BR /&gt;
    at org.apache.commons.httpclient.HttpParser.readRawLine(HttpParser.java:78)&lt;/P&gt;

&lt;P&gt;**** Error  Mon May 11 3:40:00 PM  2015 /com/commerce/droplets/FetchStoreForCommItemDroplet InvalidParameterException &lt;/P&gt;

&lt;P&gt;Here in the above log entry, I like to find out if any of the exception occurred more than 25 times in a 3 hour window.&lt;/P&gt;</description>
      <pubDate>Mon, 11 May 2015 20:44:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192589#M12417</guid>
      <dc:creator>ritwikva</dc:creator>
      <dc:date>2015-05-11T20:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk alert to get consecutive errors from logs</title>
      <link>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192590#M12418</link>
      <description>&lt;P&gt;Something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=mylogs err* OR exception | stats count by host | where count&amp;gt;25
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 19 May 2015 16:05:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192590#M12418</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-05-19T16:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk alert to get consecutive errors from logs</title>
      <link>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192591#M12419</link>
      <description>&lt;P&gt;does it's true if there are some success events between error events.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2019 08:32:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Alerting/Splunk-alert-to-get-consecutive-errors-from-logs/m-p/192591#M12419</guid>
      <dc:creator>vietlq414</dc:creator>
      <dc:date>2019-09-18T08:32:18Z</dc:date>
    </item>
  </channel>
</rss>

