Splunk Search

How do I extract the date from the file name itself

tkmads1
Explorer

I need to extract date from the log file name as my logs only have a timestamp and no date available.

The date format is:
xxx_06-20-15-xxx.trc

I have also tried to edit the following stanza in datetime.xml:

<define name="_masheddate" extract="year, month, day">
<text>
<[CDATA[ (?:^|source::).*?(?<!\d|\d\.|-)(?:20)?([901]\d)(0\d|1[012])([012]\d|3[01])(?!\d|-| {2,})
  ]]>
</text>
</define>

But I'm unable to get the required result.

How can I do it?

0 Karma

woodcock
Esteemed Legend

You must do this with datetime.xml; but you must NEVER edit the existing global file! You need to create your own, put an entry in your own app's props.conf (again, not the global one) file, like this:

DATETIME_CONFIG = /etc/apps/MyApp/default/datetime.xml

It should have something like this:

 <datetime>
 <define name="myappdatetimefromfile" extract="year, month, day">
    <text><![CDATA[source::.*?-(\d{2})(0\d|1[012])([012]\d|3[01])-\d{2}_\d{2}]]></text>
 </define>
 <timePatterns>
    <use name="myappdatetimefromfile"/>
 </timePatterns>
 <datePatterns>
    <use name="myappdatetimefromfile"/>
 </datePatterns>
 </datetime>
0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...