<?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: edit datetime.xml for my custom date and time in source field in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430217#M123021</link>
    <description>&lt;P&gt;It seems to be bug to parse &lt;CODE&gt;%Y%m%dT%H:%M:%S&lt;/CODE&gt; this format timestamp from source value&lt;/P&gt;</description>
    <pubDate>Thu, 31 Jan 2019 15:18:15 GMT</pubDate>
    <dc:creator>ips_mandar</dc:creator>
    <dc:date>2019-01-31T15:18:15Z</dc:date>
    <item>
      <title>edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430210#M123014</link>
      <description>&lt;P&gt;Hi everyone,&lt;BR /&gt;
Can someone tell me what I'm suppose to edit in my datetime.xml file for my custom date and time to be recognized in Splunk? &lt;BR /&gt;
I want to extract date and time from my source field which is like this-&lt;CODE&gt;20190128T06:14:25.json&lt;/CODE&gt; IT is in format &lt;CODE&gt;%Y%m%dT%H:%M:%S&lt;/CODE&gt;&lt;BR /&gt;
I tried below but it won't help-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;define name="_masheddate4" extract="year, month, day"&amp;gt;
    &amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:^|source::)^(\d{4})(\d{2})(\d{2})]]&amp;gt;&amp;lt;/text&amp;gt;
&amp;lt;/define&amp;gt;
&amp;lt;define name="_mashedtime4" extract="hour, minute, second"&amp;gt;
    &amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:^|source::)^.{9}(\d{2})]]&amp;gt;&amp;lt;/text&amp;gt;
        &amp;lt;use name="_hour"/&amp;gt;
    &amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:^|source::)^.{12}(\d{2})]]&amp;gt;&amp;lt;/text&amp;gt;
        &amp;lt;use name="_minute"/&amp;gt;
    &amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:^|source::)^.{15}(\d{2})]]&amp;gt;&amp;lt;/text&amp;gt;
        &amp;lt;use name="_second"/&amp;gt; 
&amp;lt;/define&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in props.conf &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[mysourcetype]
DATETIME_CONFIG = F:\Splunk\etc\apps\search\default\datetime.xml
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;My Splunk version is 7.1.2 and windows OS.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 13:52:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430210#M123014</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-01-28T13:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430211#M123015</link>
      <description>&lt;P&gt;Did you try the INGEST_EVAL mentioned in the bottom of the answers at &lt;A href="https://answers.splunk.com/answers/320978/how-to-extract-the-timestamp-from-a-filename-at-in.html"&gt;https://answers.splunk.com/answers/320978/how-to-extract-the-timestamp-from-a-filename-at-in.html&lt;/A&gt; ?&lt;/P&gt;

&lt;P&gt;You may also want to check &lt;A href="https://www.function1.com/2013/01/oh-no-splunking-log-files-with-multiple-formats-no-problem"&gt;https://www.function1.com/2013/01/oh-no-splunking-log-files-with-multiple-formats-no-problem&lt;/A&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 14:23:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430211#M123015</guid>
      <dc:creator>lakshman239</dc:creator>
      <dc:date>2019-01-28T14:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430212#M123016</link>
      <description>&lt;P&gt;Hi @lakshman239,&lt;BR /&gt;
INGEST_EVAL is for recent version but my version is 7.1.2 where it is not applicable.&lt;BR /&gt;
Also I tried below-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;datetime&amp;gt;

&amp;lt;!-- [2012/06/01 8:54:21.599] 20190128T06:14:25.json--&amp;gt;
&amp;lt;define name="_datetimeformat2" extract="year, month, day, hour, minute, second"&amp;gt;
&amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:^|source::)^(\d{4})(\d{2})(\d{2})T(\d{2}):(\d{2}):(\d{2})]]&amp;lt;/text&amp;gt;
&amp;lt;/define&amp;gt;

&amp;lt;timePatterns&amp;gt;

&amp;lt;use name="_datetimeformat2"/&amp;gt;

&amp;lt;/timePatterns&amp;gt;
&amp;lt;datePatterns&amp;gt;

&amp;lt;use name="_datetimeformat2"/&amp;gt;

&amp;lt;/datePatterns&amp;gt;
&amp;lt;/datetime&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;but still I am getting error as-&lt;BR /&gt;
Uncaught exception in Aggregator, skipping an event: Error parsing regex XML file: F:\Splunk\etc\apps\search\default\datetime.xml - Couldn't find 'timePatterns' in config data for AggregatorProcessor. - data_source="20190128T16:15:23.json&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jan 2019 16:21:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430212#M123016</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-01-28T16:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430213#M123017</link>
      <description>&lt;P&gt;Try to use the following regex:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;text&amp;gt;&amp;lt;![CDATA[^(?:|source::)(\d{4})(\d{2})(\d{2})T(\d{2}):(\d{2}):(\d{2})]]&amp;lt;/text&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;That should fix the error, but it will still not populate timestamp (_time field) from the source filename.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Jan 2019 18:44:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430213#M123017</guid>
      <dc:creator>petom</dc:creator>
      <dc:date>2019-01-30T18:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430214#M123018</link>
      <description>&lt;P&gt;Thanks for comment @petom . But it won't help  to populate Timestamp from source..I also tried below but it also won't help-&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:source::).*?(?&amp;lt;!\d|\d\.|-)(?:20)?([901]\d)(0\d|1[012])([012]\d|3[01])(?!\d|-| {2,})[.T]?([01]\d|2[0123])[:]([0-6]\d)[:]([0-6]\d)(?:\.?(\d+))?]]&amp;gt;&amp;lt;/text&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I tried various combination but none of them help to populate timestamp from source .&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 07:59:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430214#M123018</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-01-31T07:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430215#M123019</link>
      <description>&lt;P&gt;1) Your regexes are wrong; the source:: is literally part of the field value, so another caret (^) is not going to have any meaning; there's no beginning of the line there.&lt;BR /&gt;
2) The path to datetime.xml for the props.conf settings is always relative to $SPLUNK_HOME (or %SPLUNK_HOME%). The default value reads as /etc/datetime.xml for my install in /opt/splunk/; the full path to datetime.xml is /opt/splunk/etc/datetime.xml. You've provided a fully qualified path from the drive letter, you'll want to edit it down (looks like it should be /etc/apps/search/default/datetime.xml given the current setting you quoted).&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 23:02:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430215#M123019</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2020-09-29T23:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430216#M123020</link>
      <description>&lt;P&gt;@sowings Thanks and I agree with you ..&lt;BR /&gt;
i have already fixed props.conf with &lt;CODE&gt;/etc/system/local/datetime.xml&lt;/CODE&gt;&lt;BR /&gt;
and regarding regex I tried various combination but unable to succeed with any regex could you please help me to write regex to extract from source.&lt;BR /&gt;
recently I tried below regex but unable to get success&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;text&amp;gt;&amp;lt;![CDATA[(?:source::).*?(?&amp;lt;!\d|\d\.|-)(?:20)?([901]\d)(0\d|1[012])([012]\d|3[01])(?!\d|-| {2,})[.T]?([01]\d|2[0123])[:]([0-6]\d)[:]([0-6]\d)(?:\.?(\d+))?]]&amp;gt;&amp;lt;/text&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 31 Jan 2019 15:16:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430216#M123020</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-01-31T15:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430217#M123021</link>
      <description>&lt;P&gt;It seems to be bug to parse &lt;CODE&gt;%Y%m%dT%H:%M:%S&lt;/CODE&gt; this format timestamp from source value&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jan 2019 15:18:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430217#M123021</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-01-31T15:18:15Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430218#M123022</link>
      <description>&lt;P&gt;My mistake. I misread your initial problem statement. You're right that Splunk wants to assign a &lt;EM&gt;time&lt;/EM&gt; to each and every event that it reads. Further, it processes the date and the time of events in separate passes. The way I've dealt with this in the past is to use DATETIME_CONFIG = CURRENT, which will take the "wall clock" time when the file is ingested as the time of the events. This should be within a second or two of when it gets generated, typically.&lt;/P&gt;

&lt;P&gt;It seems that upgrading is out of the question for you?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 18:56:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430218#M123022</guid>
      <dc:creator>sowings</dc:creator>
      <dc:date>2019-02-01T18:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430219#M123023</link>
      <description>&lt;P&gt;No, it won't help. I said that in my comment. You need to upgrade to version 7.2 and that opens door to get the timestamp from source.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 20:35:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430219#M123023</guid>
      <dc:creator>petom</dc:creator>
      <dc:date>2019-02-01T20:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430220#M123024</link>
      <description>&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;datetime&amp;gt;

&amp;lt;define name="_timeAndDateFromFilename_date" extract="year, month, day"&amp;gt;
        &amp;lt;text&amp;gt;&amp;lt;![CDATA[source::.*?(\d{4})-(\d{2})-(\d{2}T)]]&amp;gt;&amp;lt;/text&amp;gt;
&amp;lt;/define&amp;gt;
&amp;lt;define name="_timeAndDateFromFilename_time" extract="hour, minute, second"&amp;gt;
        &amp;lt;text&amp;gt;&amp;lt;![CDATA[source::.*?T(\d{2}):(\d{2}):(\d{2})]]&amp;gt;&amp;lt;/text&amp;gt;
&amp;lt;/define&amp;gt;

&amp;lt;timePatterns&amp;gt;
        &amp;lt;use name="_timeAndDateFromFilename_time"/&amp;gt;
&amp;lt;/timePatterns&amp;gt;
&amp;lt;datePatterns&amp;gt;
        &amp;lt;use name="_timeAndDateFromFilename_date"/&amp;gt;
&amp;lt;/datePatterns&amp;gt;

&amp;lt;/datetime&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 02 Feb 2019 04:07:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430220#M123024</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-02T04:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430221#M123025</link>
      <description>&lt;P&gt;Thanks @woodcock.. But My source file is for ex. &lt;CODE&gt;20190128T06:14:25.json&lt;/CODE&gt; .It is in format &lt;CODE&gt;%Y%m%dT%H:%M:%S&lt;/CODE&gt; so I removed &lt;CODE&gt;-&lt;/CODE&gt; as below but still it won't work.Not sure whats the issue.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;datetime&amp;gt;

 &amp;lt;define name="_timeAndDateFromFilename_date" extract="year, month, day"&amp;gt;
         &amp;lt;text&amp;gt;&amp;lt;![CDATA[source::.*?(\d{4})(\d{2})(\d{2}T)]]&amp;gt;&amp;lt;/text&amp;gt;
 &amp;lt;/define&amp;gt;
 &amp;lt;define name="_timeAndDateFromFilename_time" extract="hour, minute, second"&amp;gt;
         &amp;lt;text&amp;gt;&amp;lt;![CDATA[source::.*?T(\d{2}):(\d{2}):(\d{2})]]&amp;gt;&amp;lt;/text&amp;gt;
 &amp;lt;/define&amp;gt;

 &amp;lt;timePatterns&amp;gt;
         &amp;lt;use name="_timeAndDateFromFilename_time"/&amp;gt;
 &amp;lt;/timePatterns&amp;gt;
 &amp;lt;datePatterns&amp;gt;
         &amp;lt;use name="_timeAndDateFromFilename_date"/&amp;gt;
 &amp;lt;/datePatterns&amp;gt;

 &amp;lt;/datetime&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Feb 2019 15:26:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430221#M123025</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-02-04T15:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430222#M123026</link>
      <description>&lt;P&gt;You also have this wrong:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DATETIME_CONFIG = F:\Splunk\etc\apps\search\default\datetime.xml
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It should be this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DATETIME_CONFIG = \etc\apps\search\default\datetime.xml
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 Feb 2019 20:23:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430222#M123026</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-04T20:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430223#M123027</link>
      <description>&lt;P&gt;thanks for comment @woodcock &lt;BR /&gt;
Yes I have already changed DateTime_config to this -&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;DATETIME_CONFIG = /etc/system/local/datetime.xml
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;and placed datetime.xml file in &lt;CODE&gt;system/local&lt;/CODE&gt; path.&lt;BR /&gt;
but still unable to parse timestamp from source file.&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 06:22:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430223#M123027</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-02-05T06:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430224#M123028</link>
      <description>&lt;P&gt;That is the wrong place for it and has changed the way that Splunk handles unknown events.  It should NOT go there (at least not with that name). Did you try putting it where I told you to put it and using th exact props setting that I showed you?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 14:45:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430224#M123028</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-05T14:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430225#M123029</link>
      <description>&lt;P&gt;If your distributing to indexers via a Cluster Master, use this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;\etc\slave-apps\search\default\datetime.xml
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;See here:&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/526680/splunk-ise-ta-fails-when-distributed-via-cluster-m.html"&gt;https://answers.splunk.com/answers/526680/splunk-ise-ta-fails-when-distributed-via-cluster-m.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 15:17:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430225#M123029</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-08T15:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430226#M123030</link>
      <description>&lt;P&gt;Thanks for comment @woodcock &lt;BR /&gt;
But I am not using cluster environment and using distributed environment and set props.conf in Heavy forwarder&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 15:25:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430226#M123030</guid>
      <dc:creator>ips_mandar</dc:creator>
      <dc:date>2019-02-08T15:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: edit datetime.xml for my custom date and time in source field</title>
      <link>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430227#M123031</link>
      <description>&lt;P&gt;Check the error logs for &lt;CODE&gt;datetime.xml&lt;/CODE&gt; for a hint.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Feb 2019 15:36:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/edit-datetime-xml-for-my-custom-date-and-time-in-source-field/m-p/430227#M123031</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2019-02-08T15:36:35Z</dc:date>
    </item>
  </channel>
</rss>

