This document describes how to add observability code to your application by using OpenTelemetry. OpenTelemetry provides instrumentation libraries that generate telemetry for popular frameworks. You can augment the library-generated telemetry by adding custom instrumentation that measures your application-specific behavior.
The principles and concepts described in this document can be applied to apps written in all languages supported by OpenTelemetry. To learn more about instrumentation, see the following documents:
The sample code, which is the same Go app that is described in Generate traces and metrics with Go, is available in GitHub. To view the full sample, click more_vert More, and then select View on GitHub.
Before you begin
Enable the Cloud Logging, Cloud Monitoring, and Cloud Trace APIs.
Create custom traces
To generate custom traces from your application, you add instrumentation code that creates OpenTelemetry spans. In OpenTelemetry, spans are the building blocks for traces.
To create a span, do the following:
Modify your app to acquire an OpenTelemetry
Tracer
. In OpenTelemetry, a tracer is a creator of spans. You can acquire a tracer as demonstrated in the following code:The tracer name, which is represented by
scopeName
, identifies the instrumentation scope of the generated traces.Use the
tracer
instance to create spans. In the following code sample, thecomputeSubrequests
function generates a span whenever it is called:In the previous code sample, the span generated from the
computeSubrequests
function represents the work done by the entire function. This is because the first step of the function is to start a new span usingtracer.Start
and thedefer
keyword before thespan.End()
ensures that the span is ended right before the function exits.
Create custom metrics
To generate metrics from your application, you add instrumentation code that records measurements taken during your app's execution.
To create metrics, do the following:
Modify your app to acquire an OpenTelemetry
Meter
. In OpenTelemetry, a meter provides access to metric instruments for recording metrics. You can acquire a meter as demonstrated in the following code:The meter name, which is represented by
scopeName
, identifies the instrumentation scope of the generated metrics.Use the
meter
instance to create instruments which can record metrics. For example, in the following code, we use themeter
to create an OpenTelemetry Histogram:This previous code generates a histogram named
sleepHistogram
.Use the
sleepHistogram
instance to record the sleep time, which is determined when the functionrandomSleep
is invoked:The recorded metrics from these instruments are exported from your application based on your OpenTelemetry exporter configuration.
What's next
- Correlate metrics and traces by using exemplars
- OpenTelemetry
- OpenTelemetry Instrumentation
- OpenTelemetry Metrics Data Model