<?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: How do you get a universal forwarder to send missing data? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/601032#M104735</link>
    <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;I also discovered that the brute force technique works too:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;rm -rf ../var/lib/splunk/fishbucket&lt;/P&gt;&lt;P&gt;Not as elegante, but effective...&lt;/P&gt;</description>
    <pubDate>Wed, 08 Jun 2022 14:52:09 GMT</pubDate>
    <dc:creator>mykol_j</dc:creator>
    <dc:date>2022-06-08T14:52:09Z</dc:date>
    <item>
      <title>How do you get a universal forwarder to send missing data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/382276#M68922</link>
      <description>&lt;P&gt;We had a weird incident happen and we stopped receiving log files for a very specific time window.&lt;/P&gt;

&lt;P&gt;Is there a way to kick the UF clients to resend data to the indexers?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 21:22:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/382276#M68922</guid>
      <dc:creator>michael_leo</dc:creator>
      <dc:date>2019-02-13T21:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get a universal forwarder to send missing data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/382277#M68923</link>
      <description>&lt;P&gt;@michael_leo ,&lt;/P&gt;

&lt;P&gt;You can  resend old data by cleaning &lt;A href="https://docs.splunk.com/Splexicon:Fishbucket"&gt;fishbucket&lt;/A&gt; index where Splunk software tracks how far into a file indexing has progressed, to enable the software to detect when data has been added to the file and resume indexing&lt;/P&gt;

&lt;P&gt;Either you can remove the files under &lt;CODE&gt;$SPLUNK_HOME/var/lib/splunk/fishbucket&lt;/CODE&gt; for re-indexing all the inputs from that forwarder or you can use &lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Troubleshooting/CommandlinetoolsforusewithSupport#btprobe"&gt;btprobe&lt;/A&gt; to selectively re-index specific files.&lt;/P&gt;

&lt;P&gt;You need to stop the forwarder while doing the activities.&lt;/P&gt;

&lt;P&gt;Have a look at this post for more information  - &lt;A href="https://answers.splunk.com/answers/72562/how-to-reindex-data-from-a-forwarder.html"&gt;how-to-reindex-data-from-a-forwarder&lt;/A&gt;&lt;BR /&gt;
If you are re-indexing all the inputs, there could create duplicate events in your index and also this might count against your license.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Feb 2019 03:58:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/382277#M68923</guid>
      <dc:creator>renjith_nair</dc:creator>
      <dc:date>2019-02-14T03:58:42Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get a universal forwarder to send missing data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/600911#M104724</link>
      <description>&lt;P&gt;FYI,&lt;/P&gt;&lt;P&gt;the clearing fishbucket trick does not seem to work on UFs... at least on 8.2&lt;/P&gt;&lt;P&gt;:/opt/splunkforwarder/etc/system/local# /opt/splunkforwarder/bin/splunk clean eventdata -index _thefishbucket&lt;BR /&gt;This action will permanently erase all events from the index '_thefishbucket'; it cannot be undone.&lt;BR /&gt;Are you sure you want to continue [y/n]? y&lt;BR /&gt;ERROR: Cleaning eventdata is not supported on this version.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jun 2022 16:25:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/600911#M104724</guid>
      <dc:creator>mykol_j</dc:creator>
      <dc:date>2022-06-07T16:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get a universal forwarder to send missing data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/600994#M104731</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;another options are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;remove individual files by:&amp;nbsp;&lt;PRE&gt;splunk btprobe -d SPLUNK_HOME/var/lib/splunk/fishbucket/splunk_private_db --file /var/log/access.log --reset&lt;/PRE&gt;You should do this for all individual files which you want to reindexing&lt;/LI&gt;&lt;LI&gt;or just remove the fishbucket directory from UF if you want reindex all files&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;In both cases you must first stop UF before try above commands.&lt;/P&gt;&lt;P&gt;r. Ismo&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 08:04:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/600994#M104731</guid>
      <dc:creator>isoutamo</dc:creator>
      <dc:date>2022-06-08T08:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you get a universal forwarder to send missing data?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/601032#M104735</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;I also discovered that the brute force technique works too:&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;rm -rf ../var/lib/splunk/fishbucket&lt;/P&gt;&lt;P&gt;Not as elegante, but effective...&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2022 14:52:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/How-do-you-get-a-universal-forwarder-to-send-missing-data/m-p/601032#M104735</guid>
      <dc:creator>mykol_j</dc:creator>
      <dc:date>2022-06-08T14:52:09Z</dc:date>
    </item>
  </channel>
</rss>

