You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! im coming from awslogs and really interested in this tool, but I would like to know if there is a way to prase fields from JSON, as our events are stored in JSON format.
Thanks!
The text was updated successfully, but these errors were encountered:
@mmcquillan basically using json.marshall or similar to get JSON to print correctly.
I have a quick patch that does it for this repo, but i ended up forking cwlogs and adding some features I need there.
var result map[string]interface{}
err := json.Unmarshal([]byte(message), &result)
Thanks! I guess I was wondering what you envisioned in terms of how the cli would let you specify json and then specify the formatting you'd like to express?
Hello! im coming from awslogs and really interested in this tool, but I would like to know if there is a way to prase fields from JSON, as our events are stored in JSON format.
Thanks!
The text was updated successfully, but these errors were encountered: