<?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: Timestamp is extracted as none in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750869#M242437</link>
    <description>&lt;P&gt;Thank you for your reply&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/28010"&gt;@PrewinThomas&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately I'm still getting the same both "2025-07-20" and "none" value in 1 event.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-08-01 at 12.38.37 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39812i4D524CAC0E4D44C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-08-01 at 12.38.37 PM.png" alt="Screenshot 2025-08-01 at 12.38.37 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 01 Aug 2025 04:39:30 GMT</pubDate>
    <dc:creator>alvinsullivan01</dc:creator>
    <dc:date>2025-08-01T04:39:30Z</dc:date>
    <item>
      <title>Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750797#M242418</link>
      <description>&lt;P&gt;I have issue to transform data and extracting the fields value. Here is my sample data.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;2025-07-20T10:15:30+08:00 h1 test[123456]: {"data": {"a": 1, "b": 2, "c": 3}}&lt;/LI-CODE&gt;&lt;P&gt;The data has timestamp and other information in the beginning, and the data dictionary at the end. I want my data to go into Splunk in JSON format. Other than data, what I need is the timestamp. So I create a transform to pick only the data dictionary and move the timestamp into that dictionary. Here is my transforms.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[test_add_timestamp]
DEST_KEY = _raw
REGEX = ([^\s]+)[^:]+:\s*(.+)}
FORMAT = $2, "timestamp": "$1"}
LOOKAHEAD = 32768&lt;/LI-CODE&gt;&lt;P&gt;Here is my props to use the transforms.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[test_log]
SHOULD_LINEMERGE = false
TRUNCATE = 0
KV_MODE = json
LINE_BREAKER = ([\r\n]+)
NO_BINARY_CHECK = true
disabled = false
pulldown_type = true
TIME_PREFIX = timestamp
MAX_TIMESTAMP_LOOKAHEAD = 100
TIME_FORMAT = %Y-%m-%dT%H:%M:%S
TZ = UTC

TRANSFORMS-timestamp = test_add_timestamp&lt;/LI-CODE&gt;&lt;P&gt;After transform, the data will look like this.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;{"data": {"a": 1, "b": 2, "c": 3}, "timestamp": "2025-07-20T10:15:30+08:00"}&lt;/LI-CODE&gt;&lt;P&gt;But when I search the data in Splunk, why do I see "none" as value in timestamp as well?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-07-31 at 4.57.29 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39796i91D9AE60CE96AC2A/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-07-31 at 4.57.29 PM.png" alt="Screenshot 2025-07-31 at 4.57.29 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Another thing I noticed is in my Splunk index that has many data, I can see few data has this timestamp extracted, and most of them have no timestamp, which is fine. But when I click "timestamp" under interesting fields, why is it showing only "none"? I also noticed some of the JSON keys are not available under "interesting fields". What is the logic behind this?&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 09:04:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750797#M242418</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-07-31T09:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750800#M242420</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/312043"&gt;@alvinsullivan01&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;this seems to be a json format, the raw data in a json format are different than the visualized ones, so to check you regex, open the raw data visualization and not the json visualization: probablu you have to add some backslash to your regex.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 10:07:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750800#M242420</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-07-31T10:07:53Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750805#M242421</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/312043"&gt;@alvinsullivan01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this is a JSON event then you should be able to use&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TIMESTAMP_FIELDS = timestamp
#Also adjust TIME_FORMAT to include the timezone.
TIME_FORMAT = %Y-%m-%dT%H:%M:%S%z&lt;/LI-CODE&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>Thu, 31 Jul 2025 12:27:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750805#M242421</guid>
      <dc:creator>livehybrid</dc:creator>
      <dc:date>2025-07-31T12:27:06Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750814#M242426</link>
      <description>&lt;P&gt;If you're ok with the timestamp just being assigned to an event (no need to have it explicitly written in the event itself),&amp;nbsp; just parse out the timestamp, cut the whole header and just leave the json part on its own.&lt;/P&gt;&lt;P&gt;Timestamp recognition takes place very early in the ingestion pipeline so you can do this way and not have to have the "timestamp" field in your json. You'll just have the _time field.&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 13:32:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750814#M242426</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-07-31T13:32:53Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750861#M242432</link>
      <description>&lt;P&gt;Thank you for your reply&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/161352"&gt;@gcusello&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is how it looks like in raw visualization.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-08-01 at 10.19.43 AM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39810i1E4BB9FEE3557E99/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-08-01 at 10.19.43 AM.png" alt="Screenshot 2025-08-01 at 10.19.43 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It looks like a valid JSON format. Do you have any idea why do I have both "2025-07-20" and "none" value under timestamp?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 02:22:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750861#M242432</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T02:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750862#M242433</link>
      <description>&lt;P&gt;Thank you for your reply&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/170906"&gt;@livehybrid&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently using TIME_FORMAT as you suggested, but correct me if I'm wrong, is that for _time, not "timestamp" field?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 02:24:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750862#M242433</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T02:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750863#M242434</link>
      <description>&lt;P&gt;Thank you for your reply&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes you are right, that is another possible solution. But if possible, the requirement I have now is to have the "timestamp" field included in the event JSON. Do you have any idea why my "timestamp" field has both value "&lt;SPAN&gt;2025-07-20" and "none"?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 02:30:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750863#M242434</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T02:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750866#M242436</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/312043"&gt;@alvinsullivan01&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If the field does not exist at the moment Splunk attempts to extract time, it might report it as "none".&lt;BR /&gt;Can you try with below config,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;props.conf&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[test_log]
SHOULD_LINEMERGE = false
KV_MODE = json
LINE_BREAKER = ([\r\n]+)
NO_BINARY_CHECK = true
disabled = false
pulldown_type = true
TRUNCATE = 0

TRANSFORMS-addtimestamp = test_add_timestamp

TIME_PREFIX = "timestamp":"
TIME_FORMAT = %Y-%m-%dT%H:%M:%S%z
MAX_TIMESTAMP_LOOKAHEAD = 50
TZ = UTC&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;transforms.conf&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[test_add_timestamp]
DEST_KEY = _raw
REGEX = ^([^\s]+).*?({.*})$
FORMAT = {"timestamp":"$1", "data":$2}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Prewin&lt;BR /&gt;Splunk Enthusiast | Always happy to help! If this answer helped you, please consider marking it as the solution or giving a Karma. Thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 04:23:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750866#M242436</guid>
      <dc:creator>PrewinThomas</dc:creator>
      <dc:date>2025-08-01T04:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750869#M242437</link>
      <description>&lt;P&gt;Thank you for your reply&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/28010"&gt;@PrewinThomas&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately I'm still getting the same both "2025-07-20" and "none" value in 1 event.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-08-01 at 12.38.37 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/39812i4D524CAC0E4D44C4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-08-01 at 12.38.37 PM.png" alt="Screenshot 2025-08-01 at 12.38.37 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 04:39:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750869#M242437</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T04:39:30Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750881#M242439</link>
      <description>&lt;P&gt;It's&amp;nbsp; hard to say without knowing your full config.&lt;/P&gt;&lt;P&gt;Anyway, answering your earlier question, the "interesting fields" section shows only fields for which there is a value in at least some part of your all events (don't remember the threshold - 10%? 15%?). So if you have a field which appears in just 3% of your search results it will not be listed under interesting fields.&lt;/P&gt;&lt;P&gt;One more thing, if you have a value of "none" for your timestamp field it means that it has been explicitly assigned this value. If there is no value there's just no value. "none" in this case is a string saying "none".&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 06:03:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750881#M242439</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-08-01T06:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750883#M242440</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/231884"&gt;@PickleRick&lt;/a&gt;&amp;nbsp;Thank you for the info! That may explain why some of the fields are not showing up in interesting fields. Though I can see as in my screenshot that there is only 1 "timestamp" field in my JSON and it has value, so I'm still not sure where is the "none" coming from.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 06:11:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750883#M242440</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T06:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750889#M242441</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/312043"&gt;@alvinsullivan01&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;you used a wrong TIME_PREFIX: timestap il calculated as first operation, so please try:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TIME_PREFIX = ^&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 06:34:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750889#M242441</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2025-08-01T06:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750890#M242442</link>
      <description>&lt;P&gt;That's why I'm saying that without knowing your full config it's impossible to tell you where it comes from. The "none" value seems like some kind of a safeguard calculated value so that you have _some_ value assigned even if no/wrong value was extracted in the first place (it's a typical operation for some fields in CIM datamodels for example). But normally I'd expect it to overwrite the original field. So for no we can only guess.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 06:37:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750890#M242442</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-08-01T06:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750891#M242443</link>
      <description>&lt;P&gt;Good catch. Timestamp recognition takes place right after line breaking. Definitely way before all this fields shuffling. So the timestamp at this point is still in the header of the event.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 06:39:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750891#M242443</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-08-01T06:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750894#M242444</link>
      <description>&lt;P&gt;Thank you, that works!&lt;/P&gt;&lt;P&gt;Out of curiosity, do you know why Splunk extracted both "2025-07-20" and "none" when TIME_PREFIX was wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 06:50:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750894#M242444</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T06:50:21Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750899#M242445</link>
      <description>&lt;P&gt;Ahhh... I doublechecked and it seems Splunk also populates the&amp;nbsp;&lt;EM&gt;timestamp&lt;/EM&gt; by default (to be honest, I didn't know that; I thought it was only the&amp;nbsp;&lt;EM&gt;_time&lt;/EM&gt; field and those "partial" fields like&amp;nbsp;&lt;EM&gt;date_hour, date_day&lt;/EM&gt; and so on).&lt;/P&gt;&lt;P&gt;So when you had your TIME_PREFIX wrong Splunk - since as I said timestamp recognition happend very early in the ingestion pipeline - would attempt to parse out the timestamp from the message. Since the prefix was wrong Splunk wouldn't properly extract the time so it would set the&amp;nbsp;&lt;EM&gt;_time&lt;/EM&gt; using default logic (either to the timestamp of the previous event or the current time of the receiving host; the details of the time assignment are pretty well docummented, for example here -&amp;nbsp;&lt;A href="https://help.splunk.com/en/data-management/get-data-in/get-data-into-splunk-cloud-platform/10.0.2503/configure-timestamps/how-timestamp-assignment-works" target="_blank"&gt;https://help.splunk.com/en/data-management/get-data-in/get-data-into-splunk-cloud-platform/10.0.2503/configure-timestamps/how-timestamp-assignment-works&lt;/A&gt;&amp;nbsp;) and it would set the&amp;nbsp;&lt;EM&gt; timestamp&lt;/EM&gt; field to "none".&lt;/P&gt;&lt;P&gt;And then in search time your already transformed json would get parsed into fields so the value from the event would be added to the already present value of "none" making the field a multivalued field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 07:32:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750899#M242445</guid>
      <dc:creator>PickleRick</dc:creator>
      <dc:date>2025-08-01T07:32:52Z</dc:date>
    </item>
    <item>
      <title>Re: Timestamp is extracted as none</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750905#M242446</link>
      <description>&lt;P&gt;I see, that's good to know. Thanks for the explanation!&lt;/P&gt;</description>
      <pubDate>Fri, 01 Aug 2025 08:10:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Timestamp-is-extracted-as-none/m-p/750905#M242446</guid>
      <dc:creator>alvinsullivan01</dc:creator>
      <dc:date>2025-08-01T08:10:04Z</dc:date>
    </item>
  </channel>
</rss>

