A lot of excellent information in that blog post and linked from it... but if you're wondering where to start:<p>1. Write good logs... not too noisy when everything is running well, meaningful enough to let you know the key state or branch of code when things deviate from the good path. Don't worry about structured vs unstructured too much, just ensure you include a timestamp, file, log level, func name (or line number), and that the message will help you debug.<p>2. Instrument metrics using Prometheus, there are libraries that make this easy: <a href="https://prometheus.io/docs/instrumenting/clientlibs/" rel="nofollow">https://prometheus.io/docs/instrumenting/clientlibs/</a> . Counts get you started, but you probably want to think in aggregation and to ask about the rate of things and percentiles. Use histograms for this <a href="https://prometheus.io/docs/practices/histograms/" rel="nofollow">https://prometheus.io/docs/practices/histograms/</a> . Use labels to create a more complex picture, i.e. A histogram of HTTP request times with a label of HTTP method means you can see all reqs, just the POST, or maybe the HEAD, GET together, etc... and then create rates over time, percentiles, etc. Do think about cardinality of label values, HTTP methods is good, but request identifiers are bad in high traffic environments... labels should group not identify.<p>Start with those things, tracing follows good logging and metrics as it takes a little more effort to instrument an entire system whereas logging and metrics are valuable even when only small parts of a system are instrumented.<p>Once you've instrumented... Grafana Cloud offers a hosted Grafana, Prometheus metrics scraping and storage, and Log tailing and storage (via Loki) <a href="https://grafana.com/products/cloud/" rel="nofollow">https://grafana.com/products/cloud/</a> so you can see the results of your work immediately.<p>If it's a big project, you have a lot of options and I assume you know them already, this is when you start looking at Cortex and Thanos, Datadog and Loki, tracing with Jaegar.