<?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 Splunk search to find the traffic of Heavy Forwarders reporting with their IP address? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647330#M224047</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Can someone please help me with the&amp;nbsp;Splunk search to find the list of Heavy Forwarders reporting with their IP address?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jun 2023 05:32:15 GMT</pubDate>
    <dc:creator>Roy_9</dc:creator>
    <dc:date>2023-06-20T05:32:15Z</dc:date>
    <item>
      <title>Splunk search to find the traffic of Heavy Forwarders reporting with their IP address?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647330#M224047</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Can someone please help me with the&amp;nbsp;Splunk search to find the list of Heavy Forwarders reporting with their IP address?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 05:32:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647330#M224047</guid>
      <dc:creator>Roy_9</dc:creator>
      <dc:date>2023-06-20T05:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query to find the traffic of Heavy Forwarders reporting with their IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647333#M224048</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/224632"&gt;@Roy_9&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you go in the Monitoring Console at [Forwarders &amp;gt; Forwarders Deployment] you have the list of each Forwarder sending logs to your Splunk with the indication of the Forwarder Type (Universal or Heavy) that you can use to filter results.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 15:55:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647333#M224048</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-06-16T15:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query to find the traffic of Heavy Forwarders reporting with their IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647405#M224072</link>
      <description>&lt;P&gt;Can you also help me with a search to run this on SH, I saw DMC is not set up in our environment.&lt;/P&gt;</description>
      <pubDate>Sat, 17 Jun 2023 21:07:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647405#M224072</guid>
      <dc:creator>Roy_9</dc:creator>
      <dc:date>2023-06-17T21:07:04Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query to find the traffic of Heavy Forwarders reporting with their IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647426#M224075</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/224632"&gt;@Roy_9&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;it's very strange, because MC is a very useful tool to monitor your Splunk infrastructure!&lt;/P&gt;&lt;P&gt;It's usually available on not clustered Search Heads or on Master Node.&lt;/P&gt;&lt;P&gt;Anyway,&lt;/P&gt;&lt;P&gt;this is the search to have all the Forwarders:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup dmc_forwarder_assets
| makemv delim=" " avg_tcp_kbps_sparkline
| eval sum_kb = if (status == "missing", "N/A", sum_kb)
| eval avg_tcp_kbps_sparkline = if (status == "missing", "N/A", avg_tcp_kbps_sparkline)
| eval avg_tcp_kbps = if (status == "missing", "N/A", avg_tcp_kbps)
| eval avg_tcp_eps = if (status == "missing", "N/A", avg_tcp_eps)
| `dmc_rename_forwarder_type(forwarder_type)`
| `dmc_time_format(last_connected)` | search NOT [| inputlookup dmc_assets | dedup serverName | rename serverName as hostname | fields hostname] | stats dc(guid) as "count" by status&lt;/LI-CODE&gt;&lt;P&gt;it takes data from a lookup that is alimented by the following scheduled search:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=_internal sourcetype=splunkd group=tcpin_connections (connectionType=cooked OR connectionType=cookedSSL) fwdType=* guid=* 
| stats values(fwdType) as forwarder_type, latest(version) as version, values(arch) as arch, values(os) as os, max(_time) as last_connected, sum(kb) as new_sum_kb, sparkline(avg(tcp_KBps), 1m) as new_avg_tcp_kbps_sparkline, avg(tcp_KBps) as new_avg_tcp_kbps, avg(tcp_eps) as new_avg_tcp_eps by guid, hostname 
| inputlookup append=true dmc_forwarder_assets 
| stats values(forwarder_type) as forwarder_type, max(version) as version, values(arch) as arch, values(os) as os, max(last_connected) as last_connected, values(new_sum_kb) as sum_kb, values(new_avg_tcp_kbps_sparkline) as avg_tcp_kbps_sparkline, values(new_avg_tcp_kbps) as avg_tcp_kbps, values(new_avg_tcp_eps) as avg_tcp_eps by guid, hostname 
| addinfo 
| eval status = if(isnull(sum_kb) or (sum_kb &amp;lt;= 0) or (last_connected &amp;lt; (info_max_time - 900)), "missing", "active") 
| eval sum_kb = round(sum_kb, 2) 
| eval avg_tcp_kbps = round(avg_tcp_kbps, 2) 
| eval avg_tcp_eps = round(avg_tcp_eps, 2) 
| fields guid, hostname, forwarder_type, version, arch, os, status, last_connected, sum_kb, avg_tcp_kbps_sparkline, avg_tcp_kbps, avg_tcp_eps 
| outputlookup dmc_forwarder_assets&lt;/LI-CODE&gt;&lt;P&gt;so merging the above searches you can have your list.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Sun, 18 Jun 2023 09:25:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/647426#M224075</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-06-18T09:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk query to find the traffic of Heavy Forwarders reporting with their IP address</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/648851#M224437</link>
      <description>&lt;P&gt;Thanks a lot&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Jul 2023 04:43:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-search-to-find-the-traffic-of-Heavy-Forwarders-reporting/m-p/648851#M224437</guid>
      <dc:creator>Roy_9</dc:creator>
      <dc:date>2023-07-01T04:43:44Z</dc:date>
    </item>
  </channel>
</rss>

