Skip to main content

Microsoft Azure Azure Core OpenTelemetry plugin Library for Python

Project description

Azure Core Tracing OpenTelemetry client library for Python

Getting started

Install the opentelemetry python for Python with pip:

pip install azure-core-tracing-opentelemetry --pre

Now you can use opentelemetry for Python as usual with any SDKs that are compatible with azure-core tracing. This includes (not exhaustive list), azure-storage-blob, azure-keyvault-secrets, azure-eventhub, etc.

Key concepts

  • You don't need to pass any context, SDK will get it for you

  • Those lines are the only ones you need to enable tracing

      from azure.core.settings import settings
      from azure.core.tracing.ext.opentelemetry_span import OpenTelemetrySpan
      settings.tracing_implementation = OpenTelemetrySpan
    

Examples

There is no explicit context to pass, you just create your usual opentelemetry tracer and call any SDK code that is compatible with azure-core tracing. This is an example using Azure Monitor exporter, but you can use any exporter (Zipkin, etc.).

# Declare OpenTelemetry as enabled tracing plugin for Azure SDKs
from azure.core.settings import settings
from azure.core.tracing.ext.opentelemetry_span import OpenTelemetrySpan

settings.tracing_implementation = OpenTelemetrySpan

# Example of Azure Monitor exporter, but you can use anything OpenTelemetry supports
from opentelemetry.ext.azure_monitor import AzureMonitorSpanExporter
exporter = AzureMonitorSpanExporter(
    instrumentation_key="uuid of the instrumentation key (see your Azure Monitor account)"
)

# Regular open telemetry usage from here, see https://github.com/open-telemetry/opentelemetry-python
# for details
from opentelemetry import trace
from opentelemetry.sdk.trace import Tracer
from opentelemetry.sdk.trace.export import ConsoleSpanExporter
from opentelemetry.sdk.trace.export import SimpleExportSpanProcessor

# Simple console exporter
exporter = ConsoleSpanExporter()

trace.set_preferred_tracer_implementation(lambda T: Tracer())
tracer = trace.tracer()
tracer.add_span_processor(
    SimpleExportSpanProcessor(exporter)
)

# Example with Storage SDKs

from azure.storage.blob import BlobServiceClient

with tracer.start_as_current_span(name="MyApplication"):
    client = BlobServiceClient.from_connection_string('connectionstring')
    client.create_container('mycontainer')  # Call will be traced

Azure Exporter can be found in the package opentelemetry-azure-monitor-exporter

Troubleshooting

This client raises exceptions defined in Azure Core.

Next steps

More documentation on OpenTelemetry configuration can be found on the OpenTelemetry website

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Release History


1.0.0b1 Unreleased

Features

  • Opentelemetry implementation of azure-core tracing protocol

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

azure-core-tracing-opentelemetry-1.0.0b1.zip (17.6 kB view details)

Uploaded Source

Built Distribution

azure_core_tracing_opentelemetry-1.0.0b1-py2.py3-none-any.whl (6.0 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file azure-core-tracing-opentelemetry-1.0.0b1.zip.

File metadata

  • Download URL: azure-core-tracing-opentelemetry-1.0.0b1.zip
  • Upload date:
  • Size: 17.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.0

File hashes

Hashes for azure-core-tracing-opentelemetry-1.0.0b1.zip
Algorithm Hash digest
SHA256 97653b31881c46039a9d321cd8a5c2bb372533ec281000d6d35783a6951faec0
MD5 50d52814fba5e731efe8566c0bd3c5b3
BLAKE2b-256 b29cf87b4f77986e5d67aaf370c8719704ff519846e60a70d4ed32da73a15218

See more details on using hashes here.

File details

Details for the file azure_core_tracing_opentelemetry-1.0.0b1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for azure_core_tracing_opentelemetry-1.0.0b1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 94db352a881e171c90b366c2f72130c3d4734b478ed51d86765284681db3386d
MD5 498e2ba56501a55651734e06956d49bb
BLAKE2b-256 dde1038759044afb87ecd9bd8df504908388d1a8d041f1ce6347c8f757d6b33a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page