Splunk Search

How to write a regular expression for my field?

sravankaripe
Communicator

i want to extract field by regular expression. how can i write regular expression for the below one?

"responseCode":"200"

0 Karma
1 Solution

somesoni2
Revered Legend

Try this

your base search | rex "\"responseCode\":\"(?<response_code>\d+)"

Based on the same data, it seems your data may be json format and you can get the fields extracted automatically (or you can set that up). Is it a proper json?

View solution in original post

horsefez
Motivator

Hi sravankaripe,

 | rex field=_raw "(?:.*responseCode\s?\:\s?)(?<response_code>\d+)"

Gives you a field with the name "response_code" with the specific value.

Let me know if it works and check out this great site
https://regex101.com

Regards,
pyro_wood

PS:.... god damn.... somesoni at it again, stealin my karma 😄

0 Karma

somesoni2
Revered Legend

Try this

your base search | rex "\"responseCode\":\"(?<response_code>\d+)"

Based on the same data, it seems your data may be json format and you can get the fields extracted automatically (or you can set that up). Is it a proper json?

Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...