diff --git a/_source/_includes/tracing-shipping/python-steps.md b/_source/_includes/tracing-shipping/python-steps.md index 1522eb2dd..a0dbf052e 100644 --- a/_source/_includes/tracing-shipping/python-steps.md +++ b/_source/_includes/tracing-shipping/python-steps.md @@ -9,6 +9,14 @@ opentelemetry-bootstrap --action=install pip3 install opentelemetry-exporter-otlp ``` +##### Install specific Python instrumentation for your framework and libraries + +Check the full list of available instrumentations [here](https://opentelemetry.io/ecosystem/registry/?language=python&component=instrumentation) +Example for requests library +```shell +pip3 install opentelemetry-instrumentation-requests +``` + ##### Set environment variables After installation, configure the exporter by running the following command: @@ -18,4 +26,4 @@ export OTEL_TRACES_EXPORTER=otlp export OTEL_RESOURCE_ATTRIBUTES="service.name=<>" ``` -Replace `<>` with the name of your tracing service defined earlier. \ No newline at end of file +Replace `<>` with the name of your tracing service defined earlier.