Skip to main content Miguel Hernández

Direct JSON Field Access With CloudWatch Logs Insights

Did you know CloudWatch Logs Insights can automatically parse JSON in the @message field? It means you can directly access the properties of the JSON object without using dot notation! This makes writing queries much cleaner and more intuitive.

Let’s say your logs contain messages where @message is a JSON string like this:

json code snippet start

{
  "level": "error",
  "status": 500,
  "error": "Internal Server Error",
  "other_data": "some_value"
}

json code snippet end

And you want to filter for (sidenote: Notice that `level` works directly in the filter clause, even though it's a key inside the JSON stored in `@message`. You don't need to use `@message.level`.) . A query like this will work:

shell code snippet start

fields @timestamp, level, status, error, @logStream
| sort @timestamp desc
| filter level like 'error'
| limit 1000

shell code snippet end

The expected output would be:

@timestamplevelstatuserror@logStream
2024-03-18T12:03:00.000Zerror503Service Unavailableyour-log-stream
2024-03-18T12:01:00.000Zerror500Internal Server Erroryour-log-stream
2024-03-18T11:58:00.000Zerror404Resource not foundyour-log-stream
2024-03-18T11:55:00.000Zerror502Bad Gatewayyour-log-stream