Skip to main content

Python OpenTelemetry Auto-Instrumentation

OpenTelemetry Python instrumentation provides the ability to capture telemetry data from the Python-written code applications. The best way to start it is to incorporate OpenTelemetry-Python. See a list of the supported libraries under OpenTelemetry Instrumentations.

How to instrument your app

The best way to instrument Python applications is to use OpenTelemetry-Python automatic instrumentation. This approach is simple, easy, and does not require many code changes. Only a few Python packages have to be installed to successfully instrument the code of the application. Instruction below applies to OpenTelemetry-Python instrumentation in version 1.26.0/0.47b0 with OpenTelemetry Protocol HTTP Exporter.

Mandatory packages installation

Installation of the package listed below is required to start the instrumentation and export telemetry data. Run the following pip commands:

pip install opentelemetry-distro==0.47b0
pip install opentelemetry-exporter-otlp-proto-http==1.26.0

If requirements.txt is used to manage dependencies in the project add:

opentelemetry-distro==0.47b0 opentelemetry-exporter-otlp-proto-http==1.26.0

If pipfile, add these dependencies instead of using the pip commands. For example:

opentelemetry-distro = "0.47b0" opentelemetry-exporter-otlp-proto-http = "1.26.0"

Application specific packages installation

The next step is related to the installation of the instrumented packages used in the application. This step can be done by one simple command in the root directory of your Python application. Execution of the command below will install corresponding instrumented packages used by the application. This solution is recommended.

opentelemetry-bootstrap --action=install

If you prefer not to use the bootstrap command above to auto-identify which packages are needed, then it is also possible to install the application specific instrumentation packages individually. This will require you to identify which libraries are used in your code today and install the instrumented library counterparts (such as Flask opentelemetry-instrumentation-flask).

Instrumentation configuration

After successful installation of the packages it is important to properly configure instrumentation. Configuration is set through environment variables.

  • Disables metrics exporter:
OTEL_METRICS_EXPORTER=none
  • Sets the exporter to OTLP:
OTEL_TRACES_EXPORTER=otlp
  • Sets the exporter protocol to OTLP/http:
OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
  • Configures the endpoint where telemetry data will be sent:
OTEL_EXPORTER_OTLP_ENDPOINT=http://OTLP_ENDPOINT:4318

This should be OpenTelemetry Collector/Agent endpoint address or OTLP/HTTP source. For Kubernetes environments, see the available endpoints for a direct connection. For other environments see endpoints and protocols.

  • Configures the service name. Ensure the string value represents its business logic, such as "FinanceServiceCall". This will appear as a tracing service name in Sumo Logic.
OTEL_SERVICE_NAME=SERVICE_NAME
  • Configure the application name. This will appear as a tracing application name in Sumo Logic. Additional attributes can be added here as comma separated key=value pairs.
OTEL_RESOURCE_ATTRIBUTES=application=APPLICATION_NAME

Application execution

When everything is configured it is very simple to run an instrumented application.

opentelemetry-instrument python3 SCRIPT_NAME.py

To enable auto-instrumentation, you will need to include opentelemetry-instrument at the beginning of your application execution. If this is not an option for you, you will need to follow the usage instructions for each instrumentation library you install. For example, for Django instrumentation, you will need to add the following two lines to your code (outlined in the Usage section of the library documentation):

from opentelemetry.instrumentation.django import DjangoInstrumentor

DjangoInstrumentor().instrument() ##This goes inside of main

Adding these lines eliminates the need to use the opentelemetry-instrument command in the execution of your app.

Context propagation

By default, OpenTelemetry uses W3C context propagation standard. If application instrumented by OpenTelemetry communicates with services where different context propagation is used, then it is recommended to configure additional propagator to correlate events across services. This can be achieved by installation of propagators packages and OTEL_PROPAGATORS environment variable configuration.

  • B3 context propagation - common for service meshes like Istio, Linkerd and Zipkin instrumented applications.

    • Propagator package installation:

      pip install opentelemetry-propagator-b3==1.26.0
    • Configuration:

      export OTEL_PROPAGATORS=b3,b3multi,tracecontext,baggage
  • AWS X-Ray - common for applications running in AWS Services:

    • Propagator package installation:

      pip install opentelemetry-propagator-aws-xray==1.0.1
    • Configuration:

      export OTEL_PROPAGATORS=xray,tracecontext,baggage
  • Jaeger - common for Jaeger instrumented applications

    • Propagator package installation:

      pip install opentelemetry-propagator-jaeger==1.26.0
    • Configuration:

      export OTEL_PROPAGATORS=jaeger,tracecontext,baggage
  • OpenTracing - common for OT instrumented applications

    • Propagator package installation:

      pip install opentelemetry-ot-trace==0.47b0
    • Configuration:

      export OTEL_PROPAGATORS=ottrace,tracecontext,baggage

Instrumentation notes

  • For Flask application instrumentation debug mode has to be disabled (debug=false).

  • In case of Django, the application server has to be run with --noreload flag such as:

    opentelemetry-instrument python3 manage.py runserver ---noreload

Log correlation

  • To enable trace context injection into logs, set the OTEL_PYTHON_LOG_CORRELATION environment variable to true (learn more)

Examples

Django Instrumentation

This article will show you how to use the opentelemetry-instrumentation-django library to automatically instrument a Django app. It covers how to reference the library manually within your code, as well as how to use Auto-instrumentation without having to edit your code.

Sample Flask App Instrumentation

This article walks you through deploying a simple Flask app and configuring instrumentation for it. The example demonstrates how to log traces to the console for basic testing.

Status
Legal
Privacy Statement
Terms of Use

Copyright © 2024 by Sumo Logic, Inc.