Splunk Enterprise

Regex to capture below format data

Ashwini008
Builder

Hi ,

please help me with regex expression to capture the data in below part which is in bold and underlined.

e+o.in_zpiystoc.stkdrtyini.600.1.txt.1.yyyymmddhhmmss
e+o.drlugrbuyhe.xml.1.yyyymmddhhmmss
k+d.zpiyxery.npoudatri.600.gpg.1.20210127014546.gpg
 
i need to ignore the starting x+y values and capture only the data present before dateformat and ignore everything after date(including date).
Tags (4)
0 Karma

scelikok
SplunkTrust
SplunkTrust

Hi @Ashwini008,

Please try below;

| rex "\.(?<filename>.+)\.\d{14}"
If this reply helps you an upvote and "Accept as Solution" is appreciated.

manjunathmeti
Champion

Try this:

| rex \.(?<filename>.+\.\w+\.1)
0 Karma

Ashwini008
Builder

@manjunathmeti This isn't applied to my other format files like below

c+d.zptumike.ccapd1fo.600.2.20210127020002.gpg

e+0.in_zpiyintl.truntaxi.600.1.txt.5.20210127020002.gpg

 

 

can you help with regex which applies to all the mentioned format?

 

 

0 Karma

manjunathmeti
Champion

Try this:

| rex "\.(?<filename>.+\.\w+\.\d)\."
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

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

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...