Upgrade to Pro — share decks privately, control downloads, hide ads and more …

How to instrument Go code in 2020 - Björn Rabenstein - Grafana Labs

GoDays
January 23, 2020

How to instrument Go code in 2020 - Björn Rabenstein - Grafana Labs

If you are an astute follower of Peter Bourgon's [Go best practices](https://peter.bourgon.org/go-best-practices-2016/#logging-and-instrumentation), you have known it since 2016: “You should be instrumenting every significant component of your codebase.” But what does that even mean? Back then, Peter was mostly talking about metrics (and flatteringly recommended [Prometheus](https://prometheus.io) for it). However, logging can also be seen as instrumentation. (Peter considered it related but separate in his post from 2016.) And then there is instrumentation for distributed tracing. All three of them, metrics, logs, and traces, are nowadays often referred to as the [three pillars ob observability](https://www.oreilly.com/library/view/distributed-systems-observability/9781492033431/ch04.html). Wouldn't it be nice if you could do all three of them within the same framework? [OpenTelemetry](https://opentelemetry.io) is a project promising exactly that. There is a wide field of techniques between simple standard Go packages like `expvar` and `log` and the newest and most ambitious projects like OpenTelemetry. This talk doesn't intend to give you hands-on instructions for using any of them. Instead, it will provide a (necessarily incomplete) overview of established and new approaches and some guidelines how to navigate the many choices.

GoDays

January 23, 2020
Tweet

More Decks by GoDays

Other Decks in Technology

Transcript

  1. | 2

  2. | 6

  3. | 7

  4. | 8

  5. | 9

  6. | 11 What Go “built in” “Modern” needs Example Debugging

    Profiling/Tracing runtime/pprof runtime/trace Logging log Metrics expvar
  7. | 12 What Go “built in” “Modern” needs Example Debugging

    Almost useless… You’ll find one if you really need it. Profiling/Tracing runtime/pprof runtime/trace Distributed tracing opentracing/ opentracing-go Logging log Structured logging go-kit/log Metrics expvar Labeled metrics prometheus/ client_golang
  8. | 13 What Go “built in” “Modern” needs Example Debugging

    Almost useless… You’ll find one if you really need it. Profiling/Tracing runtime/pprof runtime/trace Distributed tracing opentracing/ opentracing-go Logging log Structured logging go-kit/log Metrics expvar Labeled metrics prometheus/ client_golang
  9. A rich and universal data model | 19 Metrics are

    labeled. Logs are structured. OpenTracing.
  10. For ALL data collection models | 20 Push vs pull.

    On prem vs. cloud. Distributed vs. replicated. Location of sampling, aggregation, buffering. Exposition formats. Transport protocols.
  11. | 27 Relax! Logs and metrics are the easy part

    anyway. And not everything is a trace. Step 2: