Getting Data In

Extract filename from source

vincenty
Explorer

I am trying do a search for all exceptions and list the associated filename instead of the whole path+filename in my results table.

I tried the following in my search but it didn't work:
Exception sourcetype=qagadc1 | rex ".?(?(?:\w+.)+\w?Exception)." | rex field=source "(?(/\w)+)/+(?\w+)+.*" |table source fname

my source structure is not unique, they are varies as follow:
/home/d1/d2/d3/fn1.log
/home/d1/d2/d3/d4/d5/fn2.out
/home/d1/d2/d3/d4/d5/d6/fn3.log

...

please help.

0 Karma

koshyk
Super Champion

In case if your filename contains a . then

# For Unix style
| rex field=<fieldname> "/(?<newField>[\w\d\.]+$)"
0 Karma

martin_mueller
SplunkTrust
SplunkTrust

That's just a matter of modifying the expression, see my edited answer.

0 Karma

vincenty
Explorer

actually, I am trying to get the filename extension (i.e fn2.out, fn3.log) as part of the "fname" returned.

Tried appending what you suggested still does not give me fn3.log, or fn2.out etc.

0 Karma

vincenty
Explorer

actually, I am trying to get the filename extension (i.e fn2.out, fn3.log) as part of the "fname" returned.

Tried appending what you suggested still does not give me fn3.log, or fn2.out etc.

0 Karma

vincenty
Explorer

actually, I am trying to get the filename extension (i.e fn2.out, fn3.log) as part of the "fname" returned.

Tried appending what you suggested still does not give me fn3.log, or fn2.out etc.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

To extract the last segment of a path from a field you can append this to your search:

 | eval field = replace(field, ".*/", "")

Edit: If you want the last bit after the final dot you can modify the expression like this:

  | eval field = replace(field, ".*\.", "")
Get Updates on the Splunk Community!

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...

UCC Framework: Discover Developer Toolkit for Building Technology Add-ons

The Next-Gen Toolkit for Splunk Technology Add-on Development The Universal Configuration Console (UCC) ...

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...