In backend systems, one of the most common debugging workflows is also one of the most frustrating:
tracing a single request across multiple services using logs.
You usually end up jumping between:
log files on different servers
Docker containers
In backend systems, one of the most common debugging workflows is also one of the most...
In backend systems, one of the most common debugging workflows is also one of the most frustrating:
tracing a single request across multiple services using logs.
You usually end up jumping between:
log files on different servers
Docker containers

httptrace is one of those packages that ships with Go that more people should know about. It's in...

The Logging Nightmare Deploying microservices across Multi-Cloud environments using tools...

Arenalog: Async Go logging optimized for 1–2 vCPU containers and serverless runtimes. ...

TL;DR: I built Loom, a transparent gRPC proxy that decodes traffic in real-time using Server...

I have seen the same setup at more companies than I can count: every service writing logs to stdout,...

go tool trace provides a browser UI for exploring Go execution traces. It works well for...