<?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 to search how much bandwidth a forwarder is using? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221606#M65131</link>
    <description>&lt;P&gt;jkellerman,&lt;BR /&gt;
can you show me what you mean, is that not what is in my search? &lt;/P&gt;</description>
    <pubDate>Fri, 15 Jul 2016 14:30:41 GMT</pubDate>
    <dc:creator>sbattista09</dc:creator>
    <dc:date>2016-07-15T14:30:41Z</dc:date>
    <item>
      <title>How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221601#M65126</link>
      <description>&lt;P&gt;I'm trying to find how much bandwidth a forwarder is using and how many hosts are sending over the forwarder. I want to show it in a timechart that has the hosts' total bandwidth and then another line that had all the totals. I'm not sure where to start since most documents show using the _internal index. any input will help, thanks! &lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 15:45:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221601#M65126</guid>
      <dc:creator>sbattista09</dc:creator>
      <dc:date>2016-01-08T15:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221602#M65127</link>
      <description>&lt;P&gt;By default, the universal forwarder sends some data to the indexers, and one of these logs is the metrics.log, which you can use to calculate the outgoing thruput rate every 30s.&lt;/P&gt;

&lt;P&gt;The way this is done in Splunk on Splunk(you can simply look at the metrics view if you've got that app installed) is like something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal source=*metrics.log* group=tcpout_connections | eval KBps=tcp_Bps/1024 | timechart sum(KBps) as KBps span=15m by host| eval MB=KBps*_span/1024 | fields - KBps
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Jan 2016 16:38:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221602#M65127</guid>
      <dc:creator>jbsplunk</dc:creator>
      <dc:date>2016-01-08T16:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221603#M65128</link>
      <description>&lt;P&gt;awesome!&lt;/P&gt;

&lt;P&gt;I also found this nifty little search-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| rest splunk_server=* /services/server/introspection/indexer | eval status = case(reason == ".", status,   reason == "", status,   isnull(reason), status,   1 == 1, status.": ".reason) | fields splunk_server, average_KBps, status   | eval average_KBps = round(average_KBps, 0) | rename splunk_server as Instance, average_KBps as "Indexing Rate (KB/s)", status as Status, reason as Reason
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Jan 2016 19:01:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221603#M65128</guid>
      <dc:creator>sbattista09</dc:creator>
      <dc:date>2016-01-08T19:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221604#M65129</link>
      <description>&lt;P&gt;Splunk on Splunk? Don't you mean DMC? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jan 2016 19:09:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221604#M65129</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2016-01-08T19:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221605#M65130</link>
      <description>&lt;P&gt;Wouldn't avg(KBps) be the correct function here? &lt;BR /&gt;
Otherwise you would be presenting the sum of the individual measurements during the 15 min span. That would not be per second.&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2016 13:53:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221605#M65130</guid>
      <dc:creator>jkellerman_splu</dc:creator>
      <dc:date>2016-05-18T13:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221606#M65131</link>
      <description>&lt;P&gt;jkellerman,&lt;BR /&gt;
can you show me what you mean, is that not what is in my search? &lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2016 14:30:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221606#M65131</guid>
      <dc:creator>sbattista09</dc:creator>
      <dc:date>2016-07-15T14:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221607#M65132</link>
      <description>&lt;P&gt;You risk double accounting the metrics being logged ON the indexer and the metrics being logged TO the indexer (ON the forwarders). I would encourage you to include a host qualifier in your search.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Dec 2017 19:21:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221607#M65132</guid>
      <dc:creator>twinspop</dc:creator>
      <dc:date>2017-12-04T19:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221608#M65133</link>
      <description>&lt;P&gt;Hi sbattista09,&lt;/P&gt;

&lt;P&gt;I think jkellerman was referring the answer from jbsplunk that the function in the timechart should be avg instead of sum which I agree.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jun 2018 19:37:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221608#M65133</guid>
      <dc:creator>lqiao</dc:creator>
      <dc:date>2018-06-07T19:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to search how much bandwidth a forwarder is using?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221609#M65134</link>
      <description>&lt;P&gt;index=_internal source=&lt;EM&gt;metrics.log&lt;/EM&gt; group=udpin_connections |timechart avg(udp_kbps) max(udp_kbps) span=5m&lt;/P&gt;

&lt;P&gt;UDP is similar. But UDP has _udp_bps=25434.085277542734, _udp_kbps=24.837973903850326, _udp_avg_thruput=15.692977114824794; so we might not need to do calculation.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 05:30:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-search-how-much-bandwidth-a-forwarder-is-using/m-p/221609#M65134</guid>
      <dc:creator>louismai</dc:creator>
      <dc:date>2020-09-30T05:30:54Z</dc:date>
    </item>
  </channel>
</rss>

