Splunk Search

How to extract and download a field of array from an event?

hantaliu
Loves-to-Learn Lots

I have an event which is constructed like the following:

 

{
   name: string,
   time: string,
   duration: string,
   logs: JSONObjects[]
}

 

When I download the event, I just want the logs which is everything inside [] but without the head part which is "{logs:" and the last "}"

To do that how do I construct the search query? 

Labels (1)
Tags (2)
0 Karma

rymundo_splunk
Splunk Employee
Splunk Employee

Hi, you could use something like spath to process the json and then pick the logs array out of the resultant object.  Maybe something like this:


|makeresults
| eval json="{\"name\":\"json_name\", \"logs\":[{\"name\":\"log1\"}, { \"name\":\"log2\"}]}",
output_log_array=spath(json,"logs{}"),
output_log_names=spath(json,"logs{}.name")

I added a second example with output_log_names to show how you would extract particular fields within the array json into their own multivalued field. 

 

rymundo_splunk_0-1655944499206.png

 

 

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