<?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: Miliseconds in timestamp are not extracted in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435823#M76044</link>
    <description>&lt;P&gt;These configs need to be applied on Indexer, not on UFs&lt;/P&gt;</description>
    <pubDate>Fri, 09 Aug 2019 14:02:36 GMT</pubDate>
    <dc:creator>neha898</dc:creator>
    <dc:date>2019-08-09T14:02:36Z</dc:date>
    <item>
      <title>Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435813#M76034</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;

&lt;P&gt;I have again something strange with my logs, the milliseconds in the _time field are not detected despite the applied props.conf parameters. &lt;/P&gt;

&lt;P&gt;Here how it looks every line of my log:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;1234 08/08/2019 15:08:56:924 123456789 0000049T6 TOTOPROCESS INF TOTO settings - process timeout set to 70 s
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Here my props.conf:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; [mysourcetype] 
 TIME_PREFIX =^\d+\s\d{1,2}\/\d{1,2}\/\d{4}\s\d{1,2}\:\d{1,2}\:\d{1,2}\:\d{1,4}\s
 TIME_FORMAT = %d/%m/%Y %H:%M:%S:%3N
 MAX_TIMESTAMP_LOOKAHEAD = 29 
 TZ = GMT
 BREAK_ONLY_BEFORE =^\d+\s\d{1,2}\/\d{1,2}\/\d{4}\s\d{1,2}\:\d{1,2}\:\d{1,2}\:\d{1,4}\s
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I tried all the possible solutions that I could find in the forum but nothing works.&lt;/P&gt;

&lt;P&gt;The timestamp shows always three zeros for the milliseconds.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;8/8/19 3:08:56.000 PM
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I tried also by disabling the time_prefix, changing the time_format parameters,etc, but nothing helps.&lt;BR /&gt;
At the beginning I thought that the props.conf were not being applied but I changed the "TZ" parameter (for testing purposes) and it was immediately applied so I don't think that the UF ignores my configuration.&lt;/P&gt;

&lt;P&gt;I don't have any solution for the moment and any suggestion is welcome.&lt;/P&gt;

&lt;P&gt;Thank you in advance.&lt;BR /&gt;
Michael&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 01:39:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435813#M76034</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2020-09-30T01:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435814#M76035</link>
      <description>&lt;P&gt;Hi There,&lt;BR /&gt;
Please use TIME_FORMAT = %d/%m/%Y %H:%M:%S:%f&lt;BR /&gt;
This works for me every time.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 14:16:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435814#M76035</guid>
      <dc:creator>neha898</dc:creator>
      <dc:date>2019-08-08T14:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435815#M76036</link>
      <description>&lt;P&gt;Hi mvagionakis,&lt;BR /&gt;
I'm not sure if there are some spaces at the beginning of each row, anyway try this:&lt;BR /&gt;
(without spaces)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;TIME_PREFIX =^\d+\s
TIME_FORMAT = %d/%m/%Y %H:%M:%S%:%3N
MAX_TIMESTAMP_LOOKAHEAD = 34 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;(with spacese):&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;TIME_PREFIX =^\s+\d+\s
TIME_FORMAT = %d/%m/%Y %H:%M:%S%:%3N
MAX_TIMESTAMP_LOOKAHEAD = 34 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 14:19:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435815#M76036</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-08-08T14:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435816#M76037</link>
      <description>&lt;P&gt;okay I misunderstood your question.&lt;BR /&gt;
here you go,&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  [mysourcetype] 
  TIME_PREFIX = \d+\s+
  TIME_FORMAT = %d/%m/%Y %H:%M:%S%:%3N
  MAX_TIMESTAMP_LOOKAHEAD = 25 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 08 Aug 2019 14:35:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435816#M76037</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2019-08-08T14:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435817#M76038</link>
      <description>&lt;P&gt;hey neha898,&lt;/P&gt;

&lt;P&gt;it doesn't work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 16:13:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435817#M76038</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2019-08-08T16:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435818#M76039</link>
      <description>&lt;P&gt;hey mayurr98 &lt;/P&gt;

&lt;P&gt;it's not better &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 16:13:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435818#M76039</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2019-08-08T16:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435819#M76040</link>
      <description>&lt;P&gt;Hey gcusello ,&lt;/P&gt;

&lt;P&gt;thanks for your suggestion but I've already tried it but without success.&lt;/P&gt;

&lt;P&gt;ps: no spaces at the beginning of the line.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Aug 2019 16:14:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435819#M76040</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2019-08-08T16:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435820#M76041</link>
      <description>&lt;P&gt;Hi mvagionakis,&lt;BR /&gt;
This should solve your issue:&lt;BR /&gt;
SHOULD_LINEMERGE=false&lt;BR /&gt;
TIME_FORMAT=%d/%m/%Y %H:%M:%S:%f&lt;BR /&gt;
TIME_PREFIX=^\d+&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;Your TIME_PREFIX is incorrect&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 01:42:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435820#M76041</guid>
      <dc:creator>neha898</dc:creator>
      <dc:date>2020-09-30T01:42:02Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435821#M76042</link>
      <description>&lt;P&gt;Hi mvagionakis,&lt;BR /&gt;
where did you put this props.conf?&lt;BR /&gt;
It must be located on Indexers.&lt;/P&gt;

&lt;P&gt;Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 06:02:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435821#M76042</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-08-09T06:02:52Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435822#M76043</link>
      <description>&lt;P&gt;hello neha898,&lt;/P&gt;

&lt;P&gt;once your config applied, UF stopped forwarding so I rollback to my old config.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 09:13:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435822#M76043</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2019-08-09T09:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435823#M76044</link>
      <description>&lt;P&gt;These configs need to be applied on Indexer, not on UFs&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 14:02:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435823#M76044</guid>
      <dc:creator>neha898</dc:creator>
      <dc:date>2019-08-09T14:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435824#M76045</link>
      <description>&lt;P&gt;it is applied also on indexers.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 14:08:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435824#M76045</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2019-08-09T14:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435825#M76046</link>
      <description>&lt;P&gt;If you have heavy Forwarders, it must be appliaed on HFs.&lt;BR /&gt;
Bye.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 14:11:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435825#M76046</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2019-08-09T14:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Miliseconds in timestamp are not extracted</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435826#M76047</link>
      <description>&lt;P&gt;I applied it on indexers also....but still the same...&lt;/P&gt;

&lt;P&gt;something strange happened....I disabled completely the props.conf and the timestamp is finally recognized by splunk without problem....&lt;/P&gt;

&lt;P&gt;I also asked from the developer to remove the first digits so to start every line with the timestamp....I hope that it will be better once the modification done.&lt;/P&gt;

&lt;P&gt;thank you again.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Aug 2019 14:17:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Miliseconds-in-timestamp-are-not-extracted/m-p/435826#M76047</guid>
      <dc:creator>mvagionakis</dc:creator>
      <dc:date>2019-08-09T14:17:05Z</dc:date>
    </item>
  </channel>
</rss>

