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 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...