Splunk Search

REX not working in props.conf

hartfoml
Motivator

I am using this rex command

| rex max_match=100 "(?i)<severity>(?P<Severity>[^<]+)"

When I add this to the props.conf like this

EXTRACT-Severity = max_match=100 (?i)<severity>(?P<Severity>[^<]+)

I get no return at all

If I use this in the props.conf

EXTRACT-Severity = (?i)<severity>(?P<Severity>[^<]+)

I only get the first return in the event not all the other possible returns in the event

Can anyone help with this rex conversion to props.conf

Tags (1)
0 Karma
1 Solution

joshd
Builder

props.conf wont understand the max_match parameter, that is specific to the rex command... so you cannot use it there.

Now what do you mean you only get the first return in the event and not all other possible returns? Do you mean in a single event there are multiple Severity levels that could be reported?

If so you could look at using a transform for this...

in transforms.conf :

[get_severity]
REGEX = \<severity\>([^<]+)
FORMAT = Severity::$1
MV_ADD = true

then add in props.conf :

REPORT-severity = get_severity

View solution in original post

0 Karma

joshd
Builder

props.conf wont understand the max_match parameter, that is specific to the rex command... so you cannot use it there.

Now what do you mean you only get the first return in the event and not all other possible returns? Do you mean in a single event there are multiple Severity levels that could be reported?

If so you could look at using a transform for this...

in transforms.conf :

[get_severity]
REGEX = \<severity\>([^<]+)
FORMAT = Severity::$1
MV_ADD = true

then add in props.conf :

REPORT-severity = get_severity
0 Karma

Ayn
Legend
0 Karma

smolcj
Builder

can u explain the option FORMAT.. how to define that if we have more than one multivalued fields to extract from one event
thank you

0 Karma
Get Updates on the Splunk Community!

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...