Posts tagged: profiling
- Adding Full-Stack Observability to a Go Worker Pool
2026-03-31 15:00 MDT
How to add metrics, logs, and traces to a Go worker pool using Prometheus, Loki, Tempo, and Grafana, with every import and config line explained.
Read more → - A Guide to Using Built-in Profiling Tools in Go
2025-10-07 11:00 MDT
Profiling helps you identify where your program spends time and memory. Go provides built-in tools to collect and analyze this data. This guide covers profiling, benchmarks, and tracing, including examples and instructions for interpreting results.
Read more → - How to check if variables escape to the heap?
2026-02-09 09:20
Learn how to identify when variables escape to the heap in Go using -gcflags and how to interpret the garbage collector's output.
Read more →