Splunk Search

How can I extract key value pair in a table?

siddharthmis
Explorer

I have data like
Data: {"code": "abc", "version": "2018.6", "name": "testdata", "group": "QA", "DB": "oracle"}
in the field Message.
How can I export the key and value pair in a table.
So, I would need code, version, name, group, Db in a table.

I tried using spath but it didn't work as the data is not exactly in json format.
How can I get the data in tabular format.

0 Karma
1 Solution

kthammireddygar
Path Finder

Hope this helps

index=foo sourcetype=xyz ... | extract pairdelim="{,}" kvdelim=":" | table code version name group DB

View solution in original post

kthammireddygar
Path Finder

Hope this helps

index=foo sourcetype=xyz ... | extract pairdelim="{,}" kvdelim=":" | table code version name group DB

siddharthmis
Explorer

It helps, thanks!

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