<?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 Data not getting ingested into Splunk for multiple sources in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/712349#M117851</link>
    <description>&lt;P&gt;I have configured an app and added 7 different source files in a single inputs.conf with the same index name and sourcetype name&lt;/P&gt;&lt;P&gt;Parent directory name is same for all 7 source files and sub directory name changes.&lt;/P&gt;&lt;P&gt;The log file resides in has an extension of *.log. But i am able to get only one log file sending events to Splunk.&lt;/P&gt;&lt;P&gt;sample inputs.conf provided below.&lt;/P&gt;&lt;P&gt;[monitor:///ABC-DEF50/Platform/*.log]&lt;BR /&gt;disabled = false&lt;BR /&gt;index = os_linux&lt;BR /&gt;sourcetype = nix:messages&lt;BR /&gt;crcSalt = &amp;lt;SOURCE&amp;gt;&lt;/P&gt;&lt;P&gt;Last week's data for the remaining 6 source files i was able to see in the Splunk after 2-3 days only.&lt;/P&gt;&lt;P&gt;I checked and could see delay in indexing is happening. How to fix this? kindly help&lt;/P&gt;</description>
    <pubDate>Mon, 24 Feb 2025 09:36:17 GMT</pubDate>
    <dc:creator>sureshkumaar</dc:creator>
    <dc:date>2025-02-24T09:36:17Z</dc:date>
    <item>
      <title>Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/712349#M117851</link>
      <description>&lt;P&gt;I have configured an app and added 7 different source files in a single inputs.conf with the same index name and sourcetype name&lt;/P&gt;&lt;P&gt;Parent directory name is same for all 7 source files and sub directory name changes.&lt;/P&gt;&lt;P&gt;The log file resides in has an extension of *.log. But i am able to get only one log file sending events to Splunk.&lt;/P&gt;&lt;P&gt;sample inputs.conf provided below.&lt;/P&gt;&lt;P&gt;[monitor:///ABC-DEF50/Platform/*.log]&lt;BR /&gt;disabled = false&lt;BR /&gt;index = os_linux&lt;BR /&gt;sourcetype = nix:messages&lt;BR /&gt;crcSalt = &amp;lt;SOURCE&amp;gt;&lt;/P&gt;&lt;P&gt;Last week's data for the remaining 6 source files i was able to see in the Splunk after 2-3 days only.&lt;/P&gt;&lt;P&gt;I checked and could see delay in indexing is happening. How to fix this? kindly help&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 09:36:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/712349#M117851</guid>
      <dc:creator>sureshkumaar</dc:creator>
      <dc:date>2025-02-24T09:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/712352#M117852</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/206567"&gt;@sureshkumaar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When the thruput limit is reached, monitoring pauses and the following events are recorded in splunkd.log&lt;/P&gt;&lt;P&gt;Run this command:-&lt;/P&gt;&lt;PRE&gt;/opt/splunkforwarder/bin/splunk btool inputs list --debug&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;INFO TailingProcessor - Could not send data to output queue (parsingQueue), retrying...&lt;/P&gt;&lt;P&gt;To verify how often the forwarder is hitting this limit, check the forwarder's metrics.log. (Look for this on the forwarder because metrics.log is not forwarded by default on universal and light forwarders.)&lt;/P&gt;&lt;PRE&gt;cd /opt/splunkforwarder/var/log/splunk&lt;BR /&gt;&lt;BR /&gt;grep "name=thruput" metrics.log&lt;/PRE&gt;&lt;P&gt;Example: The instantaneous_kbps and average_kbps are always under 256KBps.&lt;/P&gt;&lt;P&gt;11-19-2013 07:36:01.398 -0600 INFO Metrics - group=thruput, name=thruput, instantaneous_kbps=251.790673, instantaneous_eps=3.934229, average_kbps=110.691774, total_k_processed=101429722, kb=7808.000000, ev=122&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Solution&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Create a custom limits.conf with a higher limit or no limit. The configuration can be in system/local or in an app that will have precedence on the existing limit.&lt;/P&gt;&lt;P&gt;Example: Configure in a dedicated app, in /opt/splunkforwarder/etc/apps/Gofaster/local/limits.conf&lt;/P&gt;&lt;P&gt;Double the thruput limit, from 256 to 512 KBps:&lt;/P&gt;&lt;PRE&gt;[thruput]&lt;BR /&gt;maxKBps = 512&lt;/PRE&gt;&lt;P&gt;Or for unlimited thruput:&lt;/P&gt;&lt;PRE&gt;[thruput]&lt;BR /&gt;maxKBps = 0&lt;/PRE&gt;&lt;UL&gt;&lt;LI&gt;Unlimited speed can cause higher resource usage on the forwarder. Keep a limit if you need to control the monitoring and network usage.&lt;/LI&gt;&lt;LI&gt;Restart to apply.&lt;/LI&gt;&lt;LI&gt;Verify the result of the configuration with btool.&lt;/LI&gt;&lt;LI&gt;Later, verify in metrics.log that the forwarder is not reaching the new limit constantly.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 24 Feb 2025 10:46:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/712352#M117852</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-02-24T10:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741073#M117853</link>
      <description>&lt;P&gt;Below stanza's are collecting data related to firewall logs.&lt;/P&gt;&lt;P&gt;first stanza is from one deployment servers and last 2 stanza's are from another same deployment server.&lt;/P&gt;&lt;P&gt;But only 2nd stanza is working&lt;/P&gt;&lt;P&gt;[monitor:///SERVER50/firewall/]&lt;BR /&gt;whitelist = SERVER50M01ZT*\.log$&lt;BR /&gt;index = nw_fortigate&lt;BR /&gt;sourcetype = fortigate_traffic&lt;BR /&gt;disabled = false&lt;/P&gt;&lt;P&gt;[monitor:///SERVER51/firewall/]&lt;BR /&gt;whitelist = SERVER51M01ZT.*\.log$&lt;BR /&gt;disabled = false&lt;BR /&gt;index = nw_fortigate&lt;BR /&gt;sourcetype = fortigate_traffic&lt;/P&gt;&lt;P&gt;[monitor:///SERVER52/firewall/]&lt;BR /&gt;whitelist = SERVER52M01ZT.*\.log$&lt;BR /&gt;disabled = false&lt;BR /&gt;index = nw_fortigate&lt;BR /&gt;sourcetype = fortigate_traffic&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2025 07:02:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741073#M117853</guid>
      <dc:creator>sureshkumaar</dc:creator>
      <dc:date>2025-03-07T07:02:55Z</dc:date>
    </item>
    <item>
      <title>Re: Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741075#M117854</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/206567"&gt;@sureshkumaar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ensure that the Splunk user (splunk) has the correct &lt;STRONG&gt;read permissions&lt;/STRONG&gt; on /SERVER50/firewall/ and /SERVER52/firewall/.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Go to syslog forwarder :-&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Run the below&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;ls -l /SERVER50/firewall/&lt;BR /&gt;ls -l /SERVER52/firewall/&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;If necessary, update permissions:&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;sudo chmod -R 755 /SERVER50/firewall/&lt;BR /&gt;sudo chmod -R 755 /SERVER52/firewall/&lt;BR /&gt;sudo chown -R splunk:splunk /SERVER50/firewall/&lt;BR /&gt;sudo chown -R splunk:splunk /SERVER52/firewall/&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Check splunkd.log for errors related to file monitoring.&lt;/P&gt;&lt;PRE&gt;grep -i "monitor" $SPLUNK_HOME/var/log/splunk/splunkd.log&lt;BR /&gt;grep -i "SERVER50" $SPLUNK_HOME/var/log/splunk/splunkd.log&lt;BR /&gt;grep -i "SERVER52" $SPLUNK_HOME/var/log/splunk/splunkd.log&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2025 07:18:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741075#M117854</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-07T07:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741076#M117855</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/206567"&gt;@sureshkumaar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Verify whether the logs are being received and processed by the syslog forwarders at the specified location.&lt;/P&gt;&lt;PRE&gt;/SERVER50/firewall/&lt;/PRE&gt;&lt;PRE&gt;/SERVER52/firewall/&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Mar 2025 07:20:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741076#M117855</guid>
      <dc:creator>kiran_panchavat</dc:creator>
      <dc:date>2025-03-07T07:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741216#M117856</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;can you show how those files are in file system (e.g. find /…. -type f)? Of course mask real IPs, FQDNs etc. Couple of lines is enough.&amp;nbsp;&lt;BR /&gt;You could check if your splunk user could see &amp;amp; read those by trying ls and cat for those as splunk user. If it cannot see those or content of those then you should use setfacl to give access to only splunk user. Never use any chmod which gives access to all users! This is actually security breach…&lt;/P&gt;&lt;P&gt;One thing which you could try as splunk user&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;splunk list inputstatus &lt;/LI-CODE&gt;&lt;P&gt;which shows is splunk read those files and if how much it has already reads.&lt;/P&gt;&lt;P&gt;r. Ismo&lt;/P&gt;</description>
      <pubDate>Sat, 08 Mar 2025 15:51:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741216#M117856</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-03-08T15:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Data not getting ingested into Splunk for multiple sources</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741217#M117857</link>
      <description>I don’t propose to do above commands as those have several really bad side effects!</description>
      <pubDate>Sat, 08 Mar 2025 15:53:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Data-not-getting-ingested-into-Splunk-for-multiple-sources/m-p/741217#M117857</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2025-03-08T15:53:01Z</dc:date>
    </item>
  </channel>
</rss>

