Entire log is JSON - how can I parse it?

Comments

5 comments

  • Avatar
    Christian

    try this (and i agree, this could be easier/more obvious):

    | json field=_raw "name", "hostname", "pid", "message_id","message_type", "worker_id", "level", "msg", "time", "v"

    2
    Comment actions Permalink
  • Avatar
    Tom Ruggles

    Thank you Christian.  I finally got something working last night that was similar but yours is nicer.  I had 

    | parse "*" as parsed | json field=parsed "name","hostname","level","message_id","message_type","msg" nodrop | fields -parsed 

    And it looks like the where part works like this:

    | where message_type = "pending"

    0
    Comment actions Permalink
  • Avatar
    David Han

    I have a similar follow up question. If I also have a json but a nested json object that looks like -

    
    
    
    
    {"csp-report":{"document-uri":"value","referrer":"value","violated-directive":"value","effective-directive":"value","original-policy":"value","blocked-uri":"www.blocked.com","status-code":200}}
    
    
    
    
    

    would this query work?

    csp-report | json field=_raw "csp-report.document-uri", "csp-report.referrer", "csp-report.violated-directive"

    0
    Comment actions Permalink
  • Avatar
    David Han

    Hi, are there any updates on this?

     

    I checked the JSON Operator docs, and I'm not sure how to parse this json.. Any help would be much appreciated.

    0
    Comment actions Permalink
  • Avatar
    David Han

    I figured it out.

    Here is the query that I used.

    *

    | parse "{\"csp-report\":*" as jsonobject

    | json field=jsonobject "blocked-uri", "document-uri", "referrer", "violated-directive", "effective-directive", "status-code", "source-file" nodrop

    | fields -jsonobject

    1
    Comment actions Permalink

Please sign in to leave a comment.