<?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: Missing data in ingested log in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Missing-data-in-ingested-log/m-p/755211#M119839</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230393"&gt;@phamxuantung&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you say you have checked the number of events in the log ingested, are you checking this for the number of events in Splunk or number of lines in the log file?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming that an event is a single line in the log file, you could do something like this to get the number of events in the log file:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;wc -l &amp;lt;pathToLog&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;This will provide the number of lines in the log, you should then to a check in Splunk:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count where index=yourIndex source=pathToLog&lt;/LI-CODE&gt;&lt;P&gt;Please can you check these values and let us know what you get back?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
    <pubDate>Wed, 05 Nov 2025 12:08:25 GMT</pubDate>
    <dc:creator>livehybrid</dc:creator>
    <dc:date>2025-11-05T12:08:25Z</dc:date>
    <item>
      <title>Missing data in ingested log</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Missing-data-in-ingested-log/m-p/755206#M119838</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have an input config to monitor file output of Golden Gate (basically content of a Oracle database output as text file in real time). The file is continously write then switch to a new file in a chunk of 10'. The number of event is quite large, also the speed of writing (around 100mil events a day, ~600 events/sec at peak)&lt;/P&gt;&lt;P&gt;How do I know the log event is missing:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because I counted the number of events in DB and counted the number of events in the log ingested. For example from 11:00:00 to 12:00:00, the ingested log have 1mil events, while the database have 2 mil rows.&lt;/P&gt;&lt;P&gt;The monitored config is as follow:&lt;/P&gt;&lt;P&gt;[monitor://outputfile/TEXT/RDB22/ISO/*/*/*/*]&amp;nbsp; #The log file save in a partten of year/month/day/hour&lt;/P&gt;&lt;P&gt;disabled = false&lt;/P&gt;&lt;P&gt;sourcetype = mycustomsourcetype&lt;/P&gt;&lt;P&gt;index = mycustomindex&lt;/P&gt;&lt;P&gt;ignoreOlderThan = 20m&lt;/P&gt;&lt;P&gt;The sourcetype is as follow&lt;/P&gt;&lt;P&gt;[mycustomsourcetype]&lt;BR /&gt;SHOULD_LINEMERGE = false&lt;BR /&gt;LINE_BREAKER = (\r?\n)+I\|&lt;BR /&gt;INDEXED_EXTRACTIONS = CSV&lt;BR /&gt;FIELD_DELIMITER = |&lt;BR /&gt;HEADER_FIELD_LINE_NUMBER = 0&lt;BR /&gt;KV_MODE= none&lt;BR /&gt;TRUNCATE = 999999&lt;BR /&gt;TIME_PREFIX = \|(?=20\d{2}-\d{2}-\d{2}\s)&lt;BR /&gt;TIME_FORMAT = %Y-%m-%d %H:%M:%S&lt;BR /&gt;MAX_TIMESTAMP_LOOKAHEAD = 19&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Any help with how to troubleshoot this problem would be very appriciate.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 10:21:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Missing-data-in-ingested-log/m-p/755206#M119838</guid>
      <dc:creator>phamxuantung</dc:creator>
      <dc:date>2025-11-05T10:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Missing data in ingested log</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Missing-data-in-ingested-log/m-p/755211#M119839</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/230393"&gt;@phamxuantung&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When you say you have checked the number of events in the log ingested, are you checking this for the number of events in Splunk or number of lines in the log file?&amp;nbsp;&lt;/P&gt;&lt;P&gt;Assuming that an event is a single line in the log file, you could do something like this to get the number of events in the log file:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;wc -l &amp;lt;pathToLog&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;This will provide the number of lines in the log, you should then to a check in Splunk:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| tstats count where index=yourIndex source=pathToLog&lt;/LI-CODE&gt;&lt;P&gt;Please can you check these values and let us know what you get back?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":glowing_star:"&gt;🌟&lt;/span&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Did this answer help you?&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If so, please consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Adding karma to show it was useful&lt;/LI&gt;&lt;LI&gt;Marking it as the solution if it resolved your issue&lt;/LI&gt;&lt;LI&gt;Commenting if you need any clarification&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Your feedback encourages the volunteers in this community to continue contributing&lt;/P&gt;</description>
      <pubDate>Wed, 05 Nov 2025 12:08:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Missing-data-in-ingested-log/m-p/755211#M119839</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-11-05T12:08:25Z</dc:date>
    </item>
  </channel>
</rss>

