Splunk Search

extract file name from the source using rex

raghunand
Explorer

My regex to extract a file from a source field works: [^/]*(?=($|\?))

For example:

/nfs/tibcosoftware/Splunk/impactAnalysis/freight/TestProject/1.0-SNAPSHOT-31/defaultVars/folder/defaultVars.substvar

returns
defaultVars.substvar
See here - http://www.regexr.com/3bvp8

But when I try using this in the rex search command, I cannot get the same result. Why?

sourcetype=tibco_ia | rex field=source  "(?<iaFileName>.*)[^/]*(?=($|\?))" | table iaFileName

This returns full file path - /nfs/tibcosoftware/Splunk/impactAnalysis/freight/TestProject/1.0-SNAPSHOT-31/defaultVars/folder/defaultVars.substvar, but I expected to get defaultVars.substvar

Please advise?

0 Karma
1 Solution

somesoni2
Revered Legend

Try something like this

sourcetype=tibco_ia | rex field=source ".*/(?<iaFileName>.*)$" | table iaFileName

View solution in original post

somesoni2
Revered Legend

Try something like this

sourcetype=tibco_ia | rex field=source ".*/(?<iaFileName>.*)$" | table iaFileName

varad_joshi
Communicator

This is the simplest answer on this query so far.

0 Karma
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 ...