Splunk Search

Splunk searching according to a value of a JSON field

Matan1986
Engager

Hi Guys,

I have a stream of JSONs and I want to search for the JSONs which name field is John. It's just like writing WHERE name="John" in SQL.
I tried to use spath command without success. I wrote:

source="tcp:8601" sourcetype="_json" | spath path=name output="John"

What would you advise me to do?

woodcock
Esteemed Legend

The spath command creates the fields. If you already have KV_MODE=JSON set for this sourcetype, this command should not be necessary. In any case, it does not filter so you have to use search or where for that after the fields are created, maybe like this:

 source="tcp:8601" sourcetype="_json" | spath | search name="John"

Or maybe just:

 source="tcp:8601" sourcetype="_json"| search name="John"
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 ...