Is it possible to split a JSON list into multiple records?

Answered

Comments

3 comments

  • Avatar
    David Wynn

    Matthew,

    One approach to soliving this would be to use a regular expression coupled with the multi modifier.

    https://help.sumologic.com/docs/search/search-query-language/parse-operators/parse-variable-patterns-using-regex/#parse-multi

    It might look like this for your case of counting the ports:

    port alias address name
    | parse regex "port\":\"(?<port>\d+)" multi
    

    Or, you could parse the complete json objects, and apply json auto to them after the fact like so:

    port alias address name
    | parse regex "(?<json_blob>\{[^\}]+\})" multi
    | json auto field=json_blob
    
    2
    Comment actions Permalink
  • Avatar
    Matthew Shanker

    Thanks for the reference to multi, that was exactly what I was looking for. I was able to get the aggregated results I needed with:

    | json "snapshot","hostIdentifier" | parse regex field=snapshot "(?<json_blob>{[^}]+})" multi | json field=json_blob "address","name","port","alias" | count by address,name,port,alias,hostIdentifier | fields -hostIdentifier | fields -address | count by port,alias,name | num(port) | sort by port asc

    I am trying to add this to an Interactive Dashboard and it complains that the timeframe is too long to be run without being optimized (24 hours), even though the query itself only takes 6 secs to run. Is this a problem with using multi? It seems the heuristic for not running the query is off in this case.

    0
    Comment actions Permalink
  • Avatar
    David Wynn

    Matthew,

    Unfortunately, multi isn't supported in Interactive dashboards for more than 6 hours at this time.

    We're always working to improve that heuristic, but there are some cases that are difficult to anticipate.

    For now, on this query, your best bet is to save the search and run it as needed in the Search interface.

    0
    Comment actions Permalink

Please sign in to leave a comment.