Splunk Search

Using multiple REGEX for extracting a single field

splunker12er
Motivator

I want to extract fields from a customized log (no pre-defined/standard log structure)

I do need to extract a field name "Description" where it has its appropriate values at different locations in various events.
Using multilple REGEX alone I can able to locate the values.

Can i use multiple REGEX to extract a single field ?

My config files:

props.conf

[myprops]
REPORT-Description = extract_desc

transforms.conf

[extract_desc]
REGEX = (,DESC,)
REGEX = (\((\d|)\))
FORMAT = Description::$1
FORMAT = Description::$2

I am trying to achieve as above , Is this correct way ?

Tags (2)

landen99
Motivator

I really have no idea what your logs look like, but from your description, they may have the form:

...,DESC,(1),...

In which case the following props.conf regex will catch it if the value is always digits:

EXTRACT-foo=,DESC,\((?P<Description>\d*)

There is no need for transforms unless there are multiple values of "Description" in a single event, or you also need to extract the field value from each event because it changes.
Also, there can only be one regex per transforms entry, even though that one regex may extract multiple fields.

0 Karma

martin_mueller
SplunkTrust
SplunkTrust

You can use multiple regular expressions to extract one field from differently structured events... but not like that. You can for example put two EXTRACT-foo lines into your props.conf that each extract the same field name.

Do post some sample data.

0 Karma
Get Updates on the Splunk Community!

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...