This page guides you through the following steps:
- Install the OpenTelemetry packages.
- Configure your application to export spans to Cloud Trace.
- Configure your platform.
For release information, see the following:
For OpenTelemetry reference content, see the following:
For the latest details about OpenTelemetry for Python, along with additional documentation and examples, see OpenTelemetry.
Before you begin
- You must use Python 3.6 or later.
-
Enable the required API.
Install the OpenTelemetry packages
To install the required OpenTelemetry packages, do the following:
(Optional) Upgrade to the latest version of
pip:pip install --upgrade pip
Install the following OpenTelemetry packages using
pip:pip install opentelemetry-api \ opentelemetry-sdk \ opentelemetry-exporter-gcp-trace
Import trace packages
Update your application to import the following packages and classes:
traceCloudTraceSpanExporterTracerProviderBatchSpanProcessor, which is an export span processor that sends spans by using a background process.(Optional) If you want to link spans, then import the
Linkclass.
The following example illustrates these import statements:
Configure the export of spans to Cloud Trace
To send spans to Cloud Trace, modify your application to use the
CloudTraceSpanExporter exporter. The following example illustrates the
required steps:
Add attributes to a span
To add an attribute to a span, call the span's set_attribute method.
For example, the following code adds multiple attributes to the span
named foo_with_attribute:
Add events to a span
To add an event to a span, call the span's add_event method.
For example, the following code adds an event to
the span named foo_with_event:
Link spans
To link two spans together, import the Link
class and then use the links field in the
start_as_current_span
method. When you link two spans, you can include attributes in the links
field.
The following code illustrates two different ways you can
link a span to the span named link_target:
Sample Flask application
OpenTelemetry's Flask instrumentation is designed to simplify capturing trace content related to HTTP requests. This means that you don't need to add specific instrumentation to your routes for these requests:
- Flask uses the configured propagator to extract the span context from the incoming HTTP requests.
- Flask automatically creates spans with attributes that describe the request and the response.
For an end-to-end example using Flask and OpenTelemetry, see flask_e2e. The Git README includes information on how to install, configure, and run the example.
This section highlights Flask-specific configuration steps that are included
in the example's server.py file. The client file, client.py, uses
the Requests instrumentation to enable tracing of HTTP requests made by the
requests library.
Import and configuration
To use OpenTelemetry's Flask instrumentation, you must import the
FlaskInstrumentor.
When you want to ensure that spans created by different Google Cloud products
are associated with the same trace, you must configure the propagator with the
Cloud Trace propagator. This propagator specifies the use of the
X-Cloud-Trace-Context header. If you don't configure a propagator, then
OpenTelemetry uses the default propagator. In this case, spans created by
different Google Cloud products, such as
Cloud Run and App Engine, are in separate traces.
The following sample illustrates the required import and configuration statements, and the configuration of the Cloud Trace propagator:
You don't need to add any Flask-specific statements when you configure the
CloudTraceSpanExporter exporter; the configuration shown in
Configure export of spans to Cloud Trace is sufficient.
Initialize Flask
Configure the FlaskInstrumentor to instrument your application.
The following sample illustrates how to perform this step:
Configure your platform
You can use Cloud Trace on Google Cloud and other platforms.
Running on Google Cloud
When your application is running on Google Cloud, you don't need to provide authentication credentials in the form of a service account to the client library. However, you do need to ensure that your Google Cloud platform has the Cloud Trace API access scope enabled.
For a list of supported Google Cloud environments, see Environment support.
For the following configurations, the default access-scope settings enable the Cloud Trace API:
- App Engine flexible environment
App Engine standard environment
Google Kubernetes Engine (GKE)
Compute Engine
Cloud Run
If you use custom access scopes, then you must ensure that Cloud Trace API access scope is enabled:
For information about how to configure the access scopes for your environment by using the Google Cloud console, see Configuring your Google Cloud project.
For
gcloudusers, specify access scopes using the--scopesflag and include thetrace.appendCloud Trace API access scope. For example, to create a GKE cluster with only the Cloud Trace API enabled, do the following:gcloud container clusters create example-cluster-name --scopes=https://www.googleapis.com/auth/trace.append
Running locally and elsewhere
If your application is running outside of Google Cloud, then you must provide authentication credentials in the form of a service account to the client library. The service account must contain the Cloud Trace agent role. For instructions, see Creating a service account.
Google Cloud client libraries use Application Default Credentials (ADC) to find your application's credentials.
You can provide these credentials in one of three ways:
Run
gcloud auth application-default loginPlace the service account in a default path for your operating system. The following lists the default paths for Windows and Linux:
Windows:
%APPDATA%/gcloud/application_default_credentials.jsonLinux:
$HOME/.config/gcloud/application_default_credentials.json
Set the
GOOGLE_APPLICATION_CREDENTIALSenvironment variable to the path to your service account:
Linux/macOS
export GOOGLE_APPLICATION_CREDENTIALS=path-to-your-service-accounts-private-key
Windows
set GOOGLE_APPLICATION_CREDENTIALS=path-to-your-service-accounts-private-key
PowerShell:
$env:GOOGLE_APPLICATION_CREDENTIALS="path-to-your-service-accounts-private-key"
View traces
In the Google Cloud console, go to the Trace explorer page:
You can also find this page by using the search bar.
Troubleshooting
For information on troubleshooting issues with Cloud Trace, go to the Troubleshooting page.
Resources
- https://opentelemetry.io/
OpenTelemetry/opentelemetry-pythonGitHub repositoryGoogle Cloud opentelemetry-operations-pythonGitHub repository.