<?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 Catalogue Log/Data inputs details for each index in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679592#M113554</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have around 340 indexes and I need to know which universal/heavy forwarder forwards data to which exact index. How can I do that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
    <pubDate>Tue, 05 Mar 2024 13:40:38 GMT</pubDate>
    <dc:creator>hazardoom</dc:creator>
    <dc:date>2024-03-05T13:40:38Z</dc:date>
    <item>
      <title>Catalogue Log/Data inputs details for each index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679592#M113554</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We have around 340 indexes and I need to know which universal/heavy forwarder forwards data to which exact index. How can I do that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 13:40:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679592#M113554</guid>
      <dc:creator>hazardoom</dc:creator>
      <dc:date>2024-03-05T13:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Catalogue Log/Data inputs details for each index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679594#M113555</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258309"&gt;@hazardoom&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;at first 340 indexes are very many, so I hint to redesign your indexes structure to reduce them.&lt;/P&gt;&lt;P&gt;Anyway, if you want to know the hosts in each index, youcan run something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats 
   count 
   values(host) AS host
   WHERE index=*
   BY index&lt;/LI-CODE&gt;&lt;P&gt;If instead you want the heavy Forwarders ,it's more difficoult because , for now, the passing through HFs aren't recorded in the events, I asked to Splunk Ideas to have this feature and it's under development.&lt;/P&gt;&lt;P&gt;Anyway, for the moment, you should create a field at index time in each HF and use it in the search, but it's very long to describe, see at&amp;nbsp;&lt;A href="https://docs.splunk.com/Documentation/Splunk/9.2.0/Data/Configureindex-timefieldextraction" target="_blank"&gt;https://docs.splunk.com/Documentation/Splunk/9.2.0/Data/Configureindex-timefieldextraction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 13:52:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679594#M113555</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-03-05T13:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: Catalogue Log/Data inputs details for each index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679595#M113556</link>
      <description>&lt;P&gt;Hi Giuseppe,&lt;/P&gt;&lt;P&gt;Thanks for the fast response. Is it possible if I can recreate the search from the monitoring console for forwarder instance and use it somehow to connect it to each index?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;`dmc_get_forwarder_tcpin` hostname=*
| eval source_uri = hostname.":".sourcePort
| eval dest_uri = host.":".destPort
| eval connection = source_uri."-&amp;gt;".dest_uri
| stats values(fwdType) as fwdType, values(sourceIp) as sourceIp, latest(version) as version, values(os) as os, values(arch) as arch, dc(dest_uri) as dest_count, dc(connection) as connection_count, avg(tcp_KBps) as avg_tcp_kbps, avg(tcp_eps) as avg_tcp_eps by hostname, guid
| eval avg_tcp_kbps = round(avg_tcp_kbps, 2)
| eval avg_tcp_eps = round(avg_tcp_eps, 2)
| `dmc_rename_forwarder_type(fwdType)`
| rename hostname as Instance, fwdType as "Forwarder Type", sourceIp as IP, version as "Splunk Version", os as OS, arch as Architecture, guid as GUID, dest_count as "Receiver Count", connection_count as "Connection Count", avg_tcp_kbps as "Average KB/s", avg_tcp_eps as "Average Events/s"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really need this information for each forwarder as from the query. The issue I see is that it searches&amp;nbsp;dmc_get_forwarder_tcpin which is equal to index=_internal sourcetype=splunkd group=tcpin_connections (connectionType=cooked OR connectionType=cookedSSL) fwdType=* guid=* and I cannot find the indexes there. How can i connect it to each index?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:14:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679595#M113556</guid>
      <dc:creator>hazardoom</dc:creator>
      <dc:date>2024-03-05T15:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Catalogue Log/Data inputs details for each index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679604#M113559</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/258309"&gt;@hazardoom&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;this search gives you different information, what do you reaaly need? tho know the hosts that are sending in each index?&lt;/P&gt;&lt;P&gt;if this is your requirement, you can use my previous search.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:17:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679604#M113559</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2024-03-05T15:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Catalogue Log/Data inputs details for each index</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679607#M113561</link>
      <description>&lt;P&gt;it will be best if I have all the info that is in the forwarder query - the type of forwarder, the average KB/s, the os, the IP, the splunk version but the index as well as we'd like to create a detailed report which will be in help when moving to cloud.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Mar 2024 15:44:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Catalogue-Log-Data-inputs-details-for-each-index/m-p/679607#M113561</guid>
      <dc:creator>hazardoom</dc:creator>
      <dc:date>2024-03-05T15:44:18Z</dc:date>
    </item>
  </channel>
</rss>

