Splunk Search

Regex for extraction

xvxt006
Contributor

Hi,

i want to extract account field and i have events in 2 patterns. One where account has boundaries of @account= and right boundary as & as shown in event 1

2nd pattern is having @account as left boundary and left boundary as space

Event1 pattern is working fine but Event2 gives the whole event after account= which is 123452 HTTP/1.1" 200 1216 109354 "-" "-" "-"

What should i have just to have the account value from Event2 pattern

Event1
?product=%20FILTERS%2016z20r2&account=12334312&country=US HTTP/1.1" 200 3388 218391 "-" "-" "-" "-" "-" "-" "-" "-" "-" "-" "

Event2
?product=2CSY1&account=123452 HTTP/1.1" 200 1216 109354 "-" "-" "-"

Expression used:
(?i)&account=(?P[^&]+)(?:\s|[&].*)

Tags (1)
0 Karma
1 Solution

kyleharrison
Path Finder

This should work:
(?i)&account=(?P[^&\s]+)

Tested ok on regex101.com with the two events you gave.

View solution in original post

kyleharrison
Path Finder

This should work:
(?i)&account=(?P[^&\s]+)

Tested ok on regex101.com with the two events you gave.

kyleharrison
Path Finder

Then you can change the "+" to "*" to match 0 or many characters ("+" matches 1 or many):

(?i)&account=(?P[^&\s]*)

That would produce: account=""

If you wanted it to be "-", then you can use this eval:

In search:
| eval account=if(isNull(account),"-",account)

In props.conf:

EVAL-account = if(isNull(account),"-",account)

0 Karma

xvxt006
Contributor

One question some times it has no value in it. as shown below. i was expecting something like - in the captured values. if i want to capture that as well, can i do that?
?product=%20FILTERS%2016z20r2&account=&country=US HTTP/1.1" 200 3388 218391

0 Karma

xvxt006
Contributor

Thank you. It worked.

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Announcing Modern Navigation: A New Era of Splunk User Experience

We are excited to introduce the Modern Navigation feature in the Splunk Platform, available to both cloud and ...

Modernize your Splunk Apps – Introducing Python 3.13 in Splunk

We are excited to announce that the upcoming releases of Splunk Enterprise 10.2.x and Splunk Cloud Platform ...

Step into “Hunt the Insider: An Splunk ES Premier Mystery” to catch a cybercriminal ...

After a whole week of being on call, you fell asleep on your keyboard, and you hit a sequence of buttons that ...