Splunk Search

extract string between backward slash and quote

pinalshah341
Loves-to-Learn

{\"reference_id\":\"REF1\",\"sub_reference_id\":\"sub_ref_1\"}

required output : table of reference_id, sub_reference_id

For the above search string : 

I am trying  :

rex field=_raw "reference_id\\\\":\\\\"(?P<reference_id>.P[^\"]*)"

But it is not working. can someone help with the correct rex command to extract the fields explicitely

Labels (3)
0 Karma

to4kawa
Ultra Champion
index=_internal | head 1 | fields _raw
| eval _raw="{\\\"reference_id\\\":\\\"REF1\\\",\\\"sub_reference_id\\\":\\\"sub_ref_1\\\"}"
| rename COMMENT as "this is sample"
| rex mode=sed "s/\\\//g"
| spath

try rex with sed mode and spath.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

First two lines set up your example data - main line extracts the two values into the fields

| makeresults 
| eval _raw="{\\\"reference_id\\\":\\\"REF1\\\",\\\"sub_reference_id\\\":\\\"sub_ref_1\\\"}"


| rex field=_raw "reference_id\\\\\":\\\\\"(?P<reference_id>[^\\\\\"]*)\\\\\",\\\\\"sub_reference_id\\\\\":\\\\\"(?P<sub_reference_id>[^\\\\\"]*)"
0 Karma

bowesmana
SplunkTrust
SplunkTrust

@pinalshah341 

| makeresults 
| eval _raw="{\\\"reference_id\\\":\\\"REF1\\\",\\\"sub_reference_id\\\":\\\"sub_ref_1\\\"}"
| rex field=_raw "reference_id\\\\\":\\\\\"(?P<reference_id>[^\\\\\"]*)"
0 Karma

pinalshah341
Loves-to-Learn

The value is not a constant string. Hence, need a query that fetches the value dynamically.

0 Karma

bowesmana
SplunkTrust
SplunkTrust

@pinalshah341 

That rex statement is exactly that - extracting the dynamic reference - the REF1 is your example data showing how it works

 

0 Karma
Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...