Instrumentation Tools & Auto Instrumentation for OpenTelemetry Python
Project description
Installation
pip install opentelemetry-instrumentation
This package provides a couple of commands that help automatically instruments a program:
opentelemetry-bootstrap
opentelemetry-bootstrap --action=install|requirements
This commands inspects the active Python site-packages and figures out which
instrumentation packages the user might want to install. By default it prints out
a list of the suggested instrumentation packages which can be added to a requirements.txt
file. It also supports installing the suggested packages when run with --action=install
flag.
opentelemetry-instrument
opentelemetry-instrument python program.py
The instrument command will try to automatically detect packages used by your python program and when possible, apply automatic tracing instrumentation on them. This means your program will get automatic distributed tracing for free without having to make any code changes at all. This will also configure a global tracer and tracing exporter without you having to make any code changes. By default, the instrument command will use the OTLP exporter but this can be overriden when needed.
The command supports the following configuration options as CLI arguments and environment vars:
--trace-exporter or OTEL_TRACE_EXPORTER
Used to specify which trace exporter to use. Can be set to one or more of the well-known exporter names (see below).
Defaults to otlp.
Can be set to none to disable automatic tracer initialization.
You can pass multiple values to configure multiple exporters e.g, zipkin,prometheus
Well known trace exporter names:
jaeger
opencensus
otlp
otlp_proto_grpc_span
zipkin
otlp is an alias for otlp_proto_grpc_span.
--id-generator or OTEL_PYTHON_ID_GENERATOR
Used to specify which IDs Generator to use for the global Tracer Provider. By default, it will use the random IDs generator.
The code in program.py needs to use one of the packages for which there is an OpenTelemetry integration. For a list of the available integrations please check here
OTEL_PYTHON_DISABLED_INSTRUMENTATIONS
If set by the user, opentelemetry-instrument will read this environment variable to disable specific instrumentations. e.g OTEL_PYTHON_DISABLED_INSTRUMENTATIONS = “requests,django”
Examples
opentelemetry-instrument --trace-exporter otlp flask run --port=3000
The above command will pass --trace-exporter otlp to the instrument command and --port=3000 to flask run.
opentelemetry-instrument --trace-exporter zipkin,otlp celery -A tasks worker --loglevel=info
The above command will configure global trace provider, attach zipkin and otlp exporters to it and then start celery with the rest of the arguments.
opentelemetry-instrument --ids-generator random flask run --port=3000
The above command will configure the global trace provider to use the Random IDs Generator, and then pass --port=3000 to flask run.
References
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file opentelemetry-instrumentation-0.23b1.tar.gz
.
File metadata
- Download URL: opentelemetry-instrumentation-0.23b1.tar.gz
- Upload date:
- Size: 20.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17ffbae52beb9c2f537ee0cc7627c74d81d6df4197b7463a6aa7cc60755434f8 |
|
MD5 | 356dedd08ce8e3105fec7068caaf650d |
|
BLAKE2b-256 | 30961d023e2ba95df7e6b1e9155d5dfecb38898d4a9031beb172cb827f726bac |
File details
Details for the file opentelemetry_instrumentation-0.23b1-py3-none-any.whl
.
File metadata
- Download URL: opentelemetry_instrumentation-0.23b1-py3-none-any.whl
- Upload date:
- Size: 22.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.61.2 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b85fe5a387662600ca45d2313c893f0d99b65ed5f4aa2c8d0e43fdb53ed02cc5 |
|
MD5 | b772762c876716728ca1530cb7fd02db |
|
BLAKE2b-256 | 5db007e6e8782955c54beeb9cf44eb33598b1e122823f10acf1afd0c3de9da03 |