<?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 How to determine the Forwarder that is sending data to a particular Index?  Not Indexer! in Deployment Architecture</title>
    <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634920#M26766</link>
    <description>&lt;P&gt;So I am troubleshooting missing data from hosts, I have the index name that is missing the data, and so I would like to track down the suspect forwarder that is not sending the data to the index.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not interested in the indexer server.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 17 Mar 2023 14:26:17 GMT</pubDate>
    <dc:creator>Pawlub1</dc:creator>
    <dc:date>2023-03-17T14:26:17Z</dc:date>
    <item>
      <title>How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634920#M26766</link>
      <description>&lt;P&gt;So I am troubleshooting missing data from hosts, I have the index name that is missing the data, and so I would like to track down the suspect forwarder that is not sending the data to the index.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not interested in the indexer server.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 14:26:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634920#M26766</guid>
      <dc:creator>Pawlub1</dc:creator>
      <dc:date>2023-03-17T14:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634921#M26767</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/254884"&gt;@Pawlub1&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you could run something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=*
| stats values(index) AS index count BY host&lt;/LI-CODE&gt;&lt;P&gt;in this way you have the list of each destination index for each host.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 14:29:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634921#M26767</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-03-17T14:29:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634924#M26768</link>
      <description>&lt;P&gt;I would assume that 'host' field in the Splunk is matching your forwarder server name.&lt;/P&gt;&lt;P&gt;To find out which hosts are not sending data for a particular index, you'd need a lookup (or list ) of all hosts that are expected to send data to an index, then you can cross compare the list/lookup with hosts that are actually sending data.&amp;nbsp; Something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count where index=yourIndexName by host
| append [| inputlookup yourhostlist.csv | table host | eval count=0]
| stats max(count) as count by host 
| where count=0&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you can't create a lookup and have smaller list of hosts, you could do something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count where index=yourIndexName by host
| append [| makeresults| eval host=split("host1 host2 .. list all your hosts space seperated" | table host | mvexpand host| eval count=0]
| stats max(count) as count by host 
| where count=0&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 17 Mar 2023 14:38:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634924#M26768</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2023-03-17T14:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634927#M26769</link>
      <description>&lt;P&gt;Hi Guiseppe,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate your quick response, but your script shows hosts sending data to an index.&lt;/P&gt;&lt;P&gt;I need a script that displays hosts sending to a forwarder than sent an index.&amp;nbsp;&lt;/P&gt;&lt;P&gt;hosts &amp;gt; forwarder &amp;gt; index&lt;/P&gt;&lt;P&gt;Ciao, Paul&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 14:56:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634927#M26769</guid>
      <dc:creator>Pawlub1</dc:creator>
      <dc:date>2023-03-17T14:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634932#M26770</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/254884"&gt;@Pawlub1&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;sorry, let me understand: do you want to know an intermediate forwarders passing through data?&lt;/P&gt;&lt;P&gt;if this is your requirement it isn't possible now.&lt;/P&gt;&lt;P&gt;I proposed to add this information to Splun ideas (&lt;A href="https://ideas.splunk.com/ideas/EID-I-1731" target="_blank"&gt;https://ideas.splunk.com/ideas/EID-I-1731&lt;/A&gt;) and it's "Under consideration", if you agree that's important vote for it.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 15:15:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634932#M26770</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-03-17T15:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634933#M26771</link>
      <description>&lt;P&gt;Splunk generally works based on push principle which means that forwarders just send what they want and splunk happily accepts that. There is no configuration items saying that some particular forwarder should send only events to one index or something like that.&lt;/P&gt;&lt;P&gt;So you either must know that beforehand, have it stored in some lookup and verify as &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/15147"&gt;@somesoni2&lt;/a&gt; wrote or check which hosts _used to_ send to a given index (provided the data hadn't rolled out of the index already) and stopped.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 15:18:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/634933#M26771</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2023-03-17T15:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine the Forwarder that is sending data to a particular Index?  Not Indexer!</title>
      <link>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/673633#M27821</link>
      <description>&lt;P&gt;Yes, that was helpful and sorry for my delayed confirmation.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2024 12:31:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Deployment-Architecture/How-to-determine-the-Forwarder-that-is-sending-data-to-a/m-p/673633#M27821</guid>
      <dc:creator>Pawlub1</dc:creator>
      <dc:date>2024-01-09T12:31:10Z</dc:date>
    </item>
  </channel>
</rss>

