Knowledge Management

Field Extractraction problem ??

rakesh_498115
Motivator

Hi .

I have written the following regex in my query , then it is working fine but when i am trying to create this regex expression in the field extractor it is not coming in the query.

My regex expression ::

(?(?im)"(Request|Response)")

Query Used after creating field extractor ::

Sourcetype="mydata" | top Test

but this is not workin ..Please help ..

Tags (1)
0 Karma
1 Solution

lguinn2
Legend

First, the names of fields are case-sensitive. You created a field named "test" but then your top command used a field called "Test". That's never going to work.

Second, although your regular expression may be legal, I would have written it:

(?im)(?<test>"(?:Request|Response)") 

I have noticed that Splunk is sometimes finicky about non-capturing parenthesis; this regular expression is a bit clearer. And are the quotation marks actually in the data? Do you really need them for the regular expression?

View solution in original post

lguinn2
Legend

First, the names of fields are case-sensitive. You created a field named "test" but then your top command used a field called "Test". That's never going to work.

Second, although your regular expression may be legal, I would have written it:

(?im)(?<test>"(?:Request|Response)") 

I have noticed that Splunk is sometimes finicky about non-capturing parenthesis; this regular expression is a bit clearer. And are the quotation marks actually in the data? Do you really need them for the regular expression?

rakesh_498115
Motivator

No quotation marks are not need lginn .. thnx for the regular expression .this worked for me..:)

0 Karma
Get Updates on the Splunk Community!

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...

.conf24 | Personalize your .conf experience with Learning Paths!

Personalize your .conf24 Experience Learning paths allow you to level up your skill sets and dive deeper ...

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...