Getting Data In

Split JSON object attributes out as key-value

johnoxley_liqui
Engager

I have a JSON object of currency conversion rates as the event, which looks like

{
  "base": "USD",
  "rates": {
    "GBP": 1.6,
    "ZAR": 10.2
  }
}

I want to pull the rates out as a table to look like

Currency      Rate
========      ====
GBP            1.6
ZAR           10.2

I can't figure out how to pull out the attribute as a column

Tags (1)

fervin
Path Finder

How's this look?

sourcetype=your_json | head 1
| spath output=gbp path=rates{}.GBP
| spath output=zar path=rates{}.ZAR
| table gbp, zar

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