Getting Data In

How to search JSON data

vbotnari1
Engager

I am trying to parse this json using spath

 {  
       "Request":{  
          "Uri":"/api/...",
          "requestHeaders":[  

             {  
                "Key":"X-Real-IP",
                "Value":[  
                   "213.205.240.26, 55.145.164.26"
                ]
             },
             {  
                "Key":"X-Forwarded-For",
                "Value":[  
                   "111.111.240.26"
                ]
             },

          "ContentHeaders":[  
             {  
                "Key":"Content-Length",
                "Value":[  
                   "0"
                ]
             }
          ],
          "Body":null
       },
       "Response":{  },
       "TimeTakenMs":119
    }

I need to extract the first value for X-Real-IP. Any help is appreciated.

Tags (2)
0 Karma
1 Solution

FrankVl
Ultra Champion

Looking at your data again: the difficulty is that X-Real-IP is not an actual json key that you can target with spath. It is the value of a field called Key.

You can extract this, but not with just using spath.

In this particular case a simple regex might be easier:

...
| rex "\"Key\":\"X-Real-IP\",\s*\"Value\":\[\s*\"(?<X_Real_IP>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"

https://regex101.com/r/ZObcvZ/1

View solution in original post

0 Karma

FrankVl
Ultra Champion

Looking at your data again: the difficulty is that X-Real-IP is not an actual json key that you can target with spath. It is the value of a field called Key.

You can extract this, but not with just using spath.

In this particular case a simple regex might be easier:

...
| rex "\"Key\":\"X-Real-IP\",\s*\"Value\":\[\s*\"(?<X_Real_IP>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})"

https://regex101.com/r/ZObcvZ/1

0 Karma

FrankVl
Ultra Champion

What do you have so far and what exactly do you need help with?

0 Karma

vbotnari1
Engager

I tried to create a span path to the correct Key (X-Real-IP) but it didn't work, my experience with json paths is not great

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