<?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: Possible explanations for Index not being refreshed automatically? in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255788#M49120</link>
    <description>&lt;P&gt;You created a new &lt;CODE&gt;Index&lt;/CODE&gt; or a new &lt;CODE&gt;Input&lt;/CODE&gt;.  Creating a new &lt;CODE&gt;Index&lt;/CODE&gt; will not cause data to flow into it.&lt;/P&gt;</description>
    <pubDate>Fri, 04 Dec 2015 21:13:38 GMT</pubDate>
    <dc:creator>woodcock</dc:creator>
    <dc:date>2015-12-04T21:13:38Z</dc:date>
    <item>
      <title>Possible explanations for Index not being refreshed automatically?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255784#M49116</link>
      <description>&lt;P&gt;Hi.  &lt;/P&gt;

&lt;P&gt;I created a new index with along with a fresh install on a Win7 system a few days ago.  It should be pointing to some log files that are continuously being updated.  When I first created it, everything looked fine.  However, when I run a search today, I'm still being told by Splunk that the latest event is from the time when I initially set up the index.  I thought the index was supposed to refresh automatically, so I am puzzled as to why it's not being updated.  Does anybody have any pointers where to look to find out why this is happening?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2015 16:15:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255784#M49116</guid>
      <dc:creator>_dave_b</dc:creator>
      <dc:date>2015-12-03T16:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Possible explanations for Index not being refreshed automatically?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255785#M49117</link>
      <description>&lt;P&gt;The most likely issue, since the logfiles reside on your indexer, is that the input is not set correctly. Try this search&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=_internal sourcetype=splunkd NOT log_level=INFO
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This is splunks internal log, and should tell you if there are any problems with the logfiles you are generating. Especially of interest are messages with the filenames of the logfiles you think you have set up, and messages with TailingProcessor in them. Also check the settings of your input and make sure that they are set correctly. &lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2015 16:38:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255785#M49117</guid>
      <dc:creator>jplumsdaine22</dc:creator>
      <dc:date>2015-12-03T16:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Possible explanations for Index not being refreshed automatically?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255786#M49118</link>
      <description>&lt;P&gt;Thanks for your reply.  I tried that search and it mostly had errors that look like this:&lt;BR /&gt;
    12-01-2015 15:26:24.792 -0500 WARN  SearchResults - Corrupt csv header, 2 columns with the same name '__mv_deviceId' (col #14 and #1, #14 will be ignored)&lt;/P&gt;

&lt;P&gt;For my input, I had set it to read a directory with a whitelist to include only the files I'm interested in.  I just deleted my whitelist and my search is now pulling events from the most recent logfile, so that's good.  I thought the whitelist was good, it looked like:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;c:\program files\app\appserver\logs\*\communication\*.txt
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Where the wildcards were covering for a datestamp &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 08:02:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255786#M49118</guid>
      <dc:creator>_dave_b</dc:creator>
      <dc:date>2020-09-29T08:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Possible explanations for Index not being refreshed automatically?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255787#M49119</link>
      <description>&lt;P&gt;Ah yes I think the whitelist stanza doesn't support backslashes in windows - so no files were getting indexed.&lt;/P&gt;

&lt;P&gt;See &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.0/Data/Specifyinputpathswithwildcards"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.0/Data/Specifyinputpathswithwildcards&lt;/A&gt; and &lt;A href="http://docs.splunk.com/Documentation/Splunk/6.2.0/Data/Whitelistorblacklistspecificincomingdata"&gt;http://docs.splunk.com/Documentation/Splunk/6.2.0/Data/Whitelistorblacklistspecificincomingdata&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You should be able to put the whitelist in the monitor part. EG: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[monitor://c:\program files\app\appserver\logs\*\communication\*.txt 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and drop the whitelist entry altogether&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2015 21:05:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255787#M49119</guid>
      <dc:creator>jplumsdaine22</dc:creator>
      <dc:date>2015-12-03T21:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Possible explanations for Index not being refreshed automatically?</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255788#M49120</link>
      <description>&lt;P&gt;You created a new &lt;CODE&gt;Index&lt;/CODE&gt; or a new &lt;CODE&gt;Input&lt;/CODE&gt;.  Creating a new &lt;CODE&gt;Index&lt;/CODE&gt; will not cause data to flow into it.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Dec 2015 21:13:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Possible-explanations-for-Index-not-being-refreshed/m-p/255788#M49120</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2015-12-04T21:13:38Z</dc:date>
    </item>
  </channel>
</rss>

