<?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: How can I set an alert for max thruput? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321116#M59907</link>
    <description>&lt;P&gt;I have an example in this &lt;A href="https://github.com/gjanders/SplunkAdmins/blob/master/default/savedsearches.conf"&gt;savedsearches.conf&lt;/A&gt; from the &lt;A href="https://github.com/gjanders/SplunkAdmins/"&gt;SplunkAdmins app&lt;/A&gt; that I created. My search is similar to other answers but I have used:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal "has reached maxKBps. As a result, data forwarding may be throttled" sourcetype=splunkd
| stats count(_raw) by host as countPerHost 
| where countPerHost &amp;gt; 1
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 24 Oct 2017 02:26:52 GMT</pubDate>
    <dc:creator>gjanders</dc:creator>
    <dc:date>2017-10-24T02:26:52Z</dc:date>
    <item>
      <title>How can I set an alert for max thruput?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321113#M59904</link>
      <description>&lt;P&gt;What is the search query to alert when the forwarder reaches max thruput?    &lt;/P&gt;</description>
      <pubDate>Sun, 22 Oct 2017 14:03:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321113#M59904</guid>
      <dc:creator>mamir32825</dc:creator>
      <dc:date>2017-10-22T14:03:33Z</dc:date>
    </item>
    <item>
      <title>Re: How can I set an alert for max thruput?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321114#M59905</link>
      <description>&lt;P&gt;from an answer by @burwell at the &lt;A href="https://answers.splunk.com/answers/584191/need-a-search-alert-query-when-the-forwarder-reach.html"&gt;post&lt;/A&gt; - Here's what I do to detect throttled forwarders. I have a scheduled search for last 4 hours (-240m to now) and then alert for any events:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; index=_internal " INFO " " throttled" NOT debug source=*splunkd.log*  | dedup host |sort host|  table host _raw
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This gives me a nice table per host and I can see the hosts and what the thruput is that is getting throttled. Example output:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; foo1.host.com        10-22-2017 18:26:28.131 +0000 INFO ThruputProcessor - Current data throughput (258 kb/s) has reached maxKBps. As a result, data forwarding may be throttled. Consider increasing the value of maxKBps in limits.conf.
 foo2.host.com        10-22-2017 18:29:28.324 +0000 INFO ThruputProcessor - Current data throughput (512 kb/s) has reached maxKBps. As a result, data forwarding may be throttled. Consider increasing the value of maxKBps in limits.conf.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 23 Oct 2017 07:45:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321114#M59905</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2017-10-23T07:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: How can I set an alert for max thruput?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321115#M59906</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;
In Distributed Monitoring Console you can find a dashboard panel that list forwarder's connections.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup dmc_forwarder_assets 
| eval avg_tcp_kbps = if (status == "missing", "N/A", avg_tcp_kbps) 
| fields hostname status avg_tcp_kbps
| where avg_tcp_kbps&amp;gt;threeshold
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;From this search you can find the Average kb/s and put a threeshold alert.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Mon, 23 Oct 2017 07:53:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321115#M59906</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2017-10-23T07:53:59Z</dc:date>
    </item>
    <item>
      <title>Re: How can I set an alert for max thruput?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321116#M59907</link>
      <description>&lt;P&gt;I have an example in this &lt;A href="https://github.com/gjanders/SplunkAdmins/blob/master/default/savedsearches.conf"&gt;savedsearches.conf&lt;/A&gt; from the &lt;A href="https://github.com/gjanders/SplunkAdmins/"&gt;SplunkAdmins app&lt;/A&gt; that I created. My search is similar to other answers but I have used:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal "has reached maxKBps. As a result, data forwarding may be throttled" sourcetype=splunkd
| stats count(_raw) by host as countPerHost 
| where countPerHost &amp;gt; 1
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Oct 2017 02:26:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-can-I-set-an-alert-for-max-thruput/m-p/321116#M59907</guid>
      <dc:creator>gjanders</dc:creator>
      <dc:date>2017-10-24T02:26:52Z</dc:date>
    </item>
  </channel>
</rss>

