Splunk Search

How do I skip words in a field extraction?

aohls
Contributor

I am working two extract fields and I have the following two lines:

"ActionName processing for AccountName completed"
"ActionName processing for account: AccountName completed"

I want to extract ActionName and AccountName as new fields using the field extractor. I am writing the expression myself and was doing something like the following:

"(?<ActionName>\w+) processing for (?<AccountName>\w+) completed"

In doing this though, I am missing the second event, "ActionName processing for account: AccountName completed". Is there a way I can have my expression run for both events correctly? I want to run with an unknown amount of space between the two and wanted to avoid doing two extractions.

I am writing the expression myself since the other way does not work correctly either.

0 Karma
1 Solution

aholzer
Motivator

This should do it:

"(?<ActionName>\w+) processing for (account:\s)?(?<AccountName>\w+) completed"

The (account:\s)? portion means that the string "account: " can appear 0 or 1 times (or in plain English, that it's optional).

Hope this helps.

View solution in original post

0 Karma

aholzer
Motivator

This should do it:

"(?<ActionName>\w+) processing for (account:\s)?(?<AccountName>\w+) completed"

The (account:\s)? portion means that the string "account: " can appear 0 or 1 times (or in plain English, that it's optional).

Hope this helps.

0 Karma

aohls
Contributor

This is exactly what I was looking for. Thank you!

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 ...