Minimal template for the Microsoft OpenTelemetry distro for Python
Project description
microsoft-opentelemetry
Python package for a Microsoft OpenTelemetry distribution that provides a single onboarding experience for observability across Azure Monitor, OTLP-compatible backends, and Microsoft Agent 365 integrations.
Getting Started
Prerequisites
- Python 3.10 or later — Install Python
- Azure subscription (optional, for Azure Monitor) — Create a free account
- Application Insights resource (optional) — How to use Application Insights
Install the Package
pip install microsoft-opentelemetry
Quick Start
Use use_microsoft_opentelemetry to set up instrumentation for your application. All passed-in parameters take priority over any related environment variables.
Azure Monitor:
from microsoft.opentelemetry import use_microsoft_opentelemetry
use_microsoft_opentelemetry(
enable_azure_monitor=True,
azure_monitor_connection_string="InstrumentationKey=...;IngestionEndpoint=...",
)
The connection string can also be set via APPLICATIONINSIGHTS_CONNECTION_STRING env var. For Entra-based auth:
from azure.identity import DefaultAzureCredential
use_microsoft_opentelemetry(
enable_azure_monitor=True,
azure_monitor_connection_string="InstrumentationKey=...;IngestionEndpoint=...",
azure_monitor_exporter_credential=DefaultAzureCredential(),
)
Agent 365:
from microsoft.opentelemetry import use_microsoft_opentelemetry
use_microsoft_opentelemetry(
enable_a365=True,
a365_token_resolver=my_token_resolver,
)
Both + OTLP:
# Set OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318 for OTLP
use_microsoft_opentelemetry(
enable_azure_monitor=True,
enable_a365=True,
a365_token_resolver=my_token_resolver,
)
See the A365 guide for A365-specific configuration.
Configuration Reference
All Options
| Keyword argument | Type | Default | Description |
|---|---|---|---|
| General | |||
disable_logging |
bool |
False |
Disable the logging pipeline. |
disable_tracing |
bool |
False |
Disable the tracing pipeline. |
disable_metrics |
bool |
False |
Disable the metrics pipeline. |
resource |
Resource |
auto | OpenTelemetry Resource. |
span_processors |
list |
[] |
Additional span processors. |
log_record_processors |
list |
[] |
Additional log record processors. |
metric_readers |
list |
[] |
Additional metric readers. |
views |
list |
[] |
Metric views. |
logger_name |
str |
None |
Logger name for log collection. |
logging_formatter |
Formatter |
None |
Formatter for collected logs. |
instrumentation_options |
dict |
None |
Per-library instrumentation enable/disable options. |
enable_trace_based_sampling_for_logs |
bool |
False |
Enable trace-based sampling for logs. |
enable_console |
bool |
False |
Console exporter (dev only). Auto-enables when no other exporter is active. |
enable_sensitive_data |
bool |
False |
Enable sensitive data recording (prompts, tool arguments, results) for Agent Framework SDK instrumentation. |
| Azure Monitor | |||
enable_azure_monitor |
bool |
False |
Enable Azure Monitor export. |
azure_monitor_connection_string |
str |
None |
Connection string. Also read from APPLICATIONINSIGHTS_CONNECTION_STRING. |
azure_monitor_exporter_credential |
TokenCredential |
None |
Azure AD token credential. |
azure_monitor_enable_live_metrics |
bool |
True |
Enable live metrics. |
azure_monitor_enable_performance_counters |
bool |
True |
Enable performance counters. |
azure_monitor_exporter_disable_offline_storage |
bool |
False |
Disable offline retry storage. |
azure_monitor_exporter_storage_directory |
str |
None |
Custom offline storage directory. |
azure_monitor_browser_sdk_loader_config |
dict |
None |
Browser SDK loader configuration. |
| Agent 365 | |||
enable_a365 |
bool |
False |
Enable A365 telemetry export. |
a365_token_resolver |
Callable |
None |
(agent_id, tenant_id) -> token callable. If omitted, defaults to FIC/DefaultAzureCredential. |
a365_cluster_category |
str |
"prod" |
Cluster category (prod, gov, dod, mooncake). |
a365_use_s2s_endpoint |
bool |
False |
Use the S2S endpoint. |
a365_suppress_invoke_agent_input |
bool |
False |
Strip input messages from InvokeAgent spans. |
a365_enable_observability_exporter |
bool |
None |
Enable the A365 HTTP exporter. Also read from ENABLE_A365_OBSERVABILITY_EXPORTER env var. Defaults to false when neither is set. |
a365_observability_scope_override |
str |
None |
Override the default Entra scope used by the built-in token resolvers. Also read from A365_OBSERVABILITY_SCOPE_OVERRIDE. |
a365_max_queue_size |
int |
2048 |
Maximum queue size for the A365 batch span processor. |
a365_scheduled_delay_ms |
int |
5000 |
Delay between A365 export batches (ms). |
a365_exporter_timeout_ms |
int |
30000 |
Timeout for a single A365 export operation (ms). |
a365_max_export_batch_size |
int |
512 |
Maximum batch size for a single A365 export operation. |
For A365 token resolver patterns, baggage, and scope classes, see the A365 guide.
Sampling
Configured via standard OpenTelemetry environment variables:
| Environment variable | Description |
|---|---|
OTEL_TRACES_SAMPLER |
Sampler type (see values below). |
OTEL_TRACES_SAMPLER_ARG |
Sampler argument (e.g. ratio or traces per second). |
Supported sampler values:
| Value | Description |
|---|---|
always_on |
Sample every trace. |
always_off |
Drop every trace. |
trace_id_ratio |
Fixed percentage by trace ID. Set ratio with OTEL_TRACES_SAMPLER_ARG (0–1). |
parentbased_always_on |
Parent-based, defaults to always on. |
parentbased_always_off |
Parent-based, defaults to always off. |
parentbased_trace_id_ratio |
Parent-based with trace ID ratio fallback. |
microsoft.fixed_percentage |
Azure Monitor fixed-percentage sampler (0–1). |
microsoft.rate_limited |
Azure Monitor rate-limited sampler (traces/sec, default 5). |
export OTEL_TRACES_SAMPLER=trace_id_ratio
export OTEL_TRACES_SAMPLER_ARG=0.1
A365 Exporter Environment Variables
When enable_a365=True, the distro adds A365 span processors to the tracing pipeline. A365 exporter behavior is configured via environment variables:
| Environment variable | Default | Description |
|---|---|---|
ENABLE_A365_OBSERVABILITY_EXPORTER |
false |
Enable the A365 HTTP exporter. Equivalent to the a365_enable_observability_exporter kwarg — either source being truthy (along with enable_a365=True) enables export to the A365 endpoint. When neither is set, the A365 span processors still register and propagate baggage attributes (e.g. gen_ai.agent.id, microsoft.tenant.id, user.name) to spans for any other configured exporter (Azure Monitor, OTLP, console), but no data is sent to A365. |
A365_CLUSTER_CATEGORY |
prod |
Cluster category for endpoint discovery (prod, gov, dod, mooncake). |
A365_USE_S2S_ENDPOINT |
false |
Use the S2S endpoint instead of the standard endpoint. |
A365_SUPPRESS_INVOKE_AGENT_INPUT |
false |
Strip input messages from InvokeAgent spans before export. |
A365_OBSERVABILITY_SCOPE_OVERRIDE |
(unset) | Override the default Entra scope used by the built-in FIC / DefaultAzureCredential token resolvers. |
ENABLE_OBSERVABILITY |
false |
Master switch for A365 scope telemetry. Must be true for scope classes to emit spans. |
Example:
export ENABLE_OBSERVABILITY=true
export ENABLE_A365_OBSERVABILITY_EXPORTER=true
OTLP Export
Automatically enabled when any OTEL_EXPORTER_OTLP_* endpoint variable is set:
| Environment variable | Description |
|---|---|
OTEL_EXPORTER_OTLP_ENDPOINT |
Base endpoint URL (e.g. http://localhost:4318). |
OTEL_EXPORTER_OTLP_TRACES_ENDPOINT |
Per-signal override for traces. |
OTEL_EXPORTER_OTLP_METRICS_ENDPOINT |
Per-signal override for metrics. |
OTEL_EXPORTER_OTLP_LOGS_ENDPOINT |
Per-signal override for logs. |
OTEL_EXPORTER_OTLP_HEADERS |
Comma-separated key=value headers. |
OTEL_EXPORTER_OTLP_TIMEOUT |
Max time in milliseconds per request. |
OTEL_EXPORTER_OTLP_COMPRESSION |
gzip or none. |
Per-signal overrides follow the pattern OTEL_EXPORTER_OTLP_{TRACES,METRICS,LOGS}_{ENDPOINT,HEADERS,TIMEOUT,COMPRESSION}.
export OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4318
python my_app.py
Console Exporter (Development)
Writes traces, metrics, and logs to stdout. Auto-enables when no other exporter is active. Can also be enabled explicitly alongside other exporters:
use_microsoft_opentelemetry(enable_console=True)
Auto-Instrumented Libraries
Microsoft OpenTelemetry automatically instruments the following libraries when installed:
| Library | Category |
|---|---|
django |
Web framework |
fastapi |
Web framework |
flask |
Web framework |
httpx |
HTTP client |
psycopg2 |
Database |
requests |
HTTP client |
urllib |
HTTP client |
urllib3 |
HTTP client |
openai |
GenAI |
openai_agents |
GenAI (see note below) |
langchain |
GenAI |
semantic_kernel |
GenAI |
agent_framework |
GenAI |
azure_sdk |
Azure (enabled when Azure Monitor is active) |
OpenAI Agents SDK: The distro includes two instrumentors for
openai_agents. Whenenable_a365=True, a bundled A365-specific instrumentor (A365OpenAIAgentsInstrumentor) is used, producing spans with the A365 versioned envelope format. When A365 is not enabled, the upstreamopentelemetry-instrumentation-openai-agents-v2instrumentor is used with standard OTel semantic conventions. See A365_DOCUMENTATION.md for details.
Toggle individual instrumentations:
use_microsoft_opentelemetry(
instrumentation_options={
"flask": {"enabled": False},
"openai": {"enabled": True},
},
)
Default Instrumentations When enable_a365=True
The distro automatically disables the
following instrumentations by default when enable_a365=True:
| Library | Default with A365 |
|---|---|
django |
disabled |
fastapi |
disabled |
flask |
disabled |
httpx |
disabled |
psycopg2 |
disabled |
requests |
disabled |
urllib |
disabled |
urllib3 |
disabled |
azure_sdk |
disabled |
openai |
enabled |
openai_agents |
enabled |
langchain |
enabled |
semantic_kernel |
enabled |
agent_framework |
enabled |
Note: When both
enable_a365=Trueandenable_azure_monitor=Trueare set, the original (non-A365) defaults are used and the disabled libraries above remain enabled so Azure Monitor continues to receive web/HTTP telemetry.
You can re-enable any of these explicitly via instrumentation_options:
use_microsoft_opentelemetry(
enable_a365=True,
instrumentation_options={
"fastapi": {"enabled": True}, # opt back in to FastAPI
},
)
When enable_a365=False (the default), all supported instrumentations
remain enabled by default.
Samples
| Sample | Scenario | Description |
|---|---|---|
| samples/a365/exporter.py | A365 | LangChain with A365 auto-instrumentation |
| samples/a365/manual_telemetry.py | A365 | Manual instrumentation using all scope classes |
| samples/distro/tracing.py | Azure Monitor | Basic tracing |
| samples/distro/metrics.py | Azure Monitor | Metrics collection |
| samples/distro/logging_sample.py | Azure Monitor | Log export |
| samples/distro/custom_events.py | Azure Monitor | Custom event logging |
| samples/distro/fastapi_app.py | Azure Monitor | FastAPI web app |
| samples/openai/ | GenAI | OpenAI chat + Agents SDK |
| samples/langchain/ | GenAI | LangChain auto-instrumentation |
| samples/otlp/ | OTLP | Export to a local collector |
| samples/fabric/ | Fabric / ADX | Export to Fabric via OTel Collector |
Documentation
- Agent 365 Observability guide
- Fabric Getting Started — Send telemetry to Microsoft Fabric / Azure Data Explorer via OTLP + OTel Collector
Troubleshooting
Enable SDK-level logging to diagnose issues:
import logging
logging.basicConfig(level=logging.DEBUG)
For A365-specific issues, see the A365 guide and the official troubleshooting docs.
Next Steps
- Agent 365 Observability guide
- Azure Monitor
- Microsoft OpenTelemetry SDK docs
- OpenTelemetry Python docs
- Samples
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.
Read our contributing guide to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to this distribution.
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.
Data Collection
As this SDK is designed to enable applications to perform data collection which is sent to the Microsoft collection endpoints the following is required to identify our privacy statement.
The software may collect information about you and your use of the software and send it to Microsoft. Microsoft may use this information to provide services and improve our products and services. You may turn off the telemetry as described in the repository. There are also some features in the software that may enable you and Microsoft to collect data from users of your applications. If you use these features, you must comply with applicable law, including providing appropriate notices to users of your applications together with a copy of Microsoft’s privacy statement. Our privacy statement is located at https://go.microsoft.com/fwlink/?LinkID=824704. You can learn more about data collection and use in the help documentation and our privacy statement. Your use of the software operates as your consent to these practices.
Internal Telemetry
SDK self-telemetry (Statsbeat) can be disabled by setting the environment variable APPLICATIONINSIGHTS_STATSBEAT_DISABLED_ALL to true.
Trademarks
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow Microsoft’s Trademark & Brand Guidelines. Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos are subject to those third-party’s policies.
Reporting Security Issues
See SECURITY.md for information on reporting vulnerabilities.
License
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file microsoft_opentelemetry-1.2.0.tar.gz.
File metadata
- Download URL: microsoft_opentelemetry-1.2.0.tar.gz
- Upload date:
- Size: 163.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a0f8c6a01b0ac2de3f32f76142aa912b9890bd8d093f1b8c907b8ee8b818975
|
|
| MD5 |
c3e400083e436d39c2c21d5d082365c2
|
|
| BLAKE2b-256 |
be444134d9ba56dffc71ab20019dd6084e12455bf327772f910a56938fdd68df
|
File details
Details for the file microsoft_opentelemetry-1.2.0-py3-none-any.whl.
File metadata
- Download URL: microsoft_opentelemetry-1.2.0-py3-none-any.whl
- Upload date:
- Size: 181.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: RestSharp/106.13.0.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17cd7d9f605e020f6c09461a3a80e36b7b39c4a9ee1568dd78e2c2c6a36c7e27
|
|
| MD5 |
25dca7e3c3b56abec059b012b5f7f830
|
|
| BLAKE2b-256 |
553c3baa0bbb170377e318f4c22b258e1deb0d976fc3c10bf212982485618d76
|