Intermediate Reading #logs #debugging #stack-trace #correlation-id

Reading Application Log Output

5 exercises — read a realistic structured log from an order service with timestamps, log levels, a correlation_id, and a stack trace. Extract meaning from each element and understand how logs tell a story.

Reading structured application logs
  • Timestamp → when it happened; millisecond precision matters for sequencing
  • Log level → INFO = normal, WARN = unusual but not broken, ERROR = failure, FATAL = crash
  • Service name → which microservice emitted this line
  • correlation_id → use this to filter: one ID = one request = one story
  • Stack trace → read bottom-to-top for context; first line (top) = crash site with line number
0 / 5 completed
1 / 5
📄 Order Service Application Log
{ex.passage}
What information can you extract from the log timestamp "2026-05-14T09:14:02.341Z"?