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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...