Splunk Search

Help with | rex command to extract a field?

adhwihhiahwd
Engager

hello everyone,

 

my event data looks like this

 

 

 

{\"status\":1,\"httpStatus\":200,\"event\":\"getBooks\"}

 

 

 

My goal is to extract httpStatus as a field so I can filter events by their codes(e.g 200, 400 ..)

 

I learned that we need to escape backslashes and double quotes but the command below didn't work

 

 

 

| rex "httpStatus\\\":(?<http_status>\d+)"

 

 

 

What did i do incorrectly here?

Labels (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

hi @adhwihhiahwd,

I suppose that yu tested yur regex in regex101.com and it runs but it doesn't run in Splunk,

so, try using four back slashes

| rex "httpStatus\\\\":(?<http_status>\d+)"

Ciao.

Giuseppe

View solution in original post

adhwihhiahwd
Engager

wow thanks!

4 back slashes worked...

| rex "httpStatus\\\\\":(?<http_status>\d+)"

 

 

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @adhwihhiahwd,

Splunk mysteries!!!

good for you, see next time!

let me know if I can help you more, or, please, accept one answer for the other people of Community.

Ciao and happy splunking

Giuseppe

P.S.: Karma Points are appreciated 😉

0 Karma

gcusello
SplunkTrust
SplunkTrust

hi @adhwihhiahwd,

I suppose that yu tested yur regex in regex101.com and it runs but it doesn't run in Splunk,

so, try using four back slashes

| rex "httpStatus\\\\":(?<http_status>\d+)"

Ciao.

Giuseppe

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!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...