Releases: DataDog/dd-trace-py
2.19.4
Bug Fixes
-
ASM: This ensures that no module from ASM are loaded when ASM is disabled or unavailable.
-
SCA: This ensures that no module from IAST are loaded when IAST is disabled or unavailable.
-
Runtime Code Analysis (IAST): Avoid imports of IAST native module when IAST is not enabled.
-
ASM: This fix resolves an issue where IAST modules could be loaded, even if disabled,
which could create an ImportError exception on Windows.
3.0.0
Migration Guide: Upgrading from dd-trace-py v2 to v3
We are happy to announce the release of v3.0.0 of ddtrace. This release drops support for Python 3.7 and many previously-deprecated parts of the library interface.
The 2.x release line enters Maintenance Mode with the release of 3.0.0, meaning that it will only receive bugfix changes on its last few minor releases, and 2.21 will be the last 2.x minor version. See the versioning policy for support level definitions.
Summary of Significant Changes
- Removed support for Python 3.7 from the library
CI Visibility
- The new pytest plugin is now the default.
- Module, suite, and test names are now parsed from
item.nodeid. - Test names now include the class name (
TestClass::test_method) for class-based tests. - Test skipping is now done at the suite level.
- The
DD_PYTEST_USE_NEW_PLUGIN_BETAenvironment variable is no longer used.
LLM Observability
- Removed support for
DD_LLMOBS_APP_NAME. - The
parametersargument inLLMObs.annotate()has been removed. Usemetadatainstead. - Dropped support for OpenAI 0.x and Langchain v0.0.x.
Tracing
- Removed all deprecated interfaces from integrations.
DD_TRACE_PROPAGATION_STYLE=b3 single headeris no longer supported. Useb3instead.- Dropped support for multiple Tracer instances. The global tracer instance
ddtrace.tracermust be used. - Removed deprecated parameters from
Tracer.configure(...). - Dropped support for several deprecated tracing configurations. See “Environment Variables” section below for details.
Recommended Pre-Upgrade Steps
Before upgrading to v3, check for deprecation warnings in your application using the latest v2 release (2.21.0):
Detect Deprecation Warnings in Tests
Enable warnings as errors in pytest:
pytest -W "error::ddtrace.DDTraceDeprecationWarning" tests.py
Detect Deprecation Warnings in Applications
Set the following environment variable to enable all deprecation warnings:
PYTHONWARNINGS=all python app.py
Environment Variables
The following environment variables have been removed or replaced in v3. Use the table below to update your configuration:
| v2 | Removed in v3 | Replaced/Changed in v3 |
|---|---|---|
| LLM Observability | ||
DD_LLMOBS_APP_NAME |
Use DD_LLMOBS_ML_APP instead |
|
_DD_LLMOBS_EVALUATOR_SAMPLING_RULES |
Use DD_LLMOBS_EVALUATOR_SAMPLING_RULES instead |
|
_DD_LLMOBS_EVALUATORS |
Use DD_LLMOBS_EVALUATORS instead |
|
| Tracing | ||
DD_ANALYTICS_ENABLED |
No replacement, this setting is now a no-op. Datadog Analytics is no longer supported. See the ingestion controls documentation for more detail. | |
DD_HTTP_CLIENT_TAG_QUERY_STRING |
Use DD_TRACE_HTTP_CLIENT_TAG_QUERY_STRING. |
|
DD_TRACE_ANALYTICS_ENABLED |
No replacement, this setting is now a no-op. Datadog Analytics is no longer supported. See the ingestion controls documentation for more detail. | |
DD_TRACE_METHODS (using [] notation) |
Must use : notation instead, For example: mod.submod:method1,method2;mod.submod:Class.method1. (docs) |
|
DD_TRACE_PROPAGATION_STYLE=”b3 single header” |
Use DD_TRACE_PROPAGATION_STYLE=b3 for identical behavior |
|
DD_TRACE_SAMPLE_RATE |
Use DD_TRACE_SAMPLING_RULES (docs). |
|
DD_TRACE_SPAN_AGGREGATOR_RLOCK |
No replacement (feature removed). Config variable is now a no-op. | |
| CI Visibility | ||
DD_PYTEST_USE_NEW_PLUGIN_BETA |
No replacement (new pytest plugin is not in beta anymore). |
Use the following patterns to identify the deprecated environment variables in a code base:
git grep -P -e "DD_LLMOBS_APP_NAME" \
-e "_DD_LLMOBS_EVALUATOR_SAMPLING_RULES" \
-e "_DD_LLMOBS_EVALUATORS" \
-e "DD_TRACE_PROPAGATION_STYLE=.*b3 single header" \
-e "DD_TRACE_SAMPLE_RATE" \
-e "DD_TRACE_API_VERSION=v0.3" \
-e "DD_ANALYTICS_ENABLED" \
-e "DD_TRACE_ANALYTICS_ENABLED" \
-e "DD_HTTP_CLIENT_TAG_QUERY_STRING" \
-e "DD_TRACE_SPAN_AGGREGATOR_RLOCK" \
-e "DD_TRACE_METHODS=.*\[\]"
Replace deprecated settings with the recommended alternatives where applicable.
NOTE: The changes to environment variables apply only to the configuration of the dd-trace-py library and not the Datadog Agent.
Legacy Interfaces
The following methods and module attributes have been removed or changed. Unless noted, removal means that the functionality pointed to by the removed interface has been disabled.
| v2 | v3 |
|---|---|
| Tracing | |
Tracer.configure(enabled: Optional[bool] = None, hostname: Optional[str] = None, port: Optional[int] = None, uds_path: Optional[str] = None, https: Optional[bool] = None, sampler: Optional[BaseSampler] = None, context_provider: Optional[DefaultContextProvider] = None, wrap_executor: Optional[Callable] = None, priority_sampling: Optional[bool] = None, settings: Optional[Dict[str, Any]] = None, dogstatsd_url: Optional[str] = None, writer: Optional[TraceWriter] = None, partial_flush_enabled: Optional[bool] = None, partial_flush_min_spans: Optional[int] = None, api_version: Optional[str] = None, compute_stats_enabled: Optional[bool] = appsec_enabled: Optional[bool] = None, iast_enabled: Optional[bool] = None, appsec_standalone_enabled: Optional[bool] = None, trace_processors: Optional[List[TraceProcessor]] = None ) |
Tracer.configure(context_provider: Optional[BaseContextProvider] = None, compute_stats_enabled: Optional[bool] = None, appsec_enabled: Optional[bool] = None, iast_enabled: Optional[bool] = None, apm_tracing_disabled: Optional[bool] = None, trace_processors: Optional[List[TraceProcessor]] = None) |
ddtrace.opentracer.tracer.Tracer()._dd_tracer |
ddtrace.tracer |
ddtrace.tracer.sampler.rules[].choose_matcher(lambda: True) |
ddtrace.tracer.sampler.rules[].choose_matcher(“foo”) Callables and regex patterns are no longer allowed as arguments to choose_matcher |
Span.sampled |
Span.context.sampling_priority > 0 |
| LLM Observability | |
LLMObs.annotate(parameters=foo) |
LLMObs.annotate(metadata=foo) |
Python 3.13 Support
Much of the library’s functionality has been compatible with Python 3.13 since version 2.20. Some pieces of functionality do not yet work with Python 3.13. Here’s what does not work under Python 3.13 as of dd-trace-py 3.0. 'Not tested' indicates that while the feature may be compatible with Python 3.13, its functionality has not been verified, as it is not included in our automated test coverage.
dd-trace-pydoesn’t work on Windows with Python 3.13- Appsec Threat Detection is not tested against Django, Flask, or FastAPI with 3.13
- Automatic Service Naming is not tested with 3.13
- The following products are not tested with 3.13:
- Code Coverage
- Appsec IAST
- Data Streams Monitoring
- CI Visibility
- Continuous Profiling
- The following integrations are not tested with 3.13:
anthropicconsulfreezegungeventgoogle_generativeaigunicornlangchainmysqlclientopentracingpsycopgpsycopg2pymysqlpytestpytest-bddpytest-benchmarksanicseleniumsqlite3starlettetornadovertexai
By following these guidelines, you can transition to dd-trace-py v3 gradually, ensuring minimal disruption to your services while taking advantage of the latest features and improvements. Happy migrating!
New Features
-
Removes code and tests related to Python 3.7, breaking the library's compatibility with this Python version.
-
ASM
- Introduces use of meta struct for appsec event reports. This will improve performances. ASM will now require at least agent version 7.35.0 to work as expected.
-
Code Security (IAST)
- Introduces Code Security support to PyMySQL and MySQLDB integrations.
- XSS detection for Django applications and Jinja2 (Flask and FastAPI applications), which will be displayed on your DataDog Vulnerability Explorer dashboard. See the Application Vulnerability Management documentation for more information about this feature.
- Implements the detection of the Stacktrace-Leak vulnerability for Django, Flask and FastAPI.
-
LLM Observability
valkey: Adds automatic instrumentation of the Valkey package. Thank you AhmadMasry!openai: Introduces tracing support to the OpenAI integration for Python versions 3.12 and 3.13.- Introduces an integration with the RAGAS evaluation framework to continuously monitor the performance of context-augmented LLM generations in production.
The integration supports evaluating LLM inferences with the following RAGAS metrics:- Faithfulness: measures if the LLM response is faithful to the provided context.
- Answer Relevancy: measures how relevant the LLM response is to the user inpu...
3.0.0rc3
Bug Fixes
-
ASM
- Ensures that no module from ASM are loaded when ASM is disabled or unavailable.
-
Code Security
- SCA: This ensures that no module from IAST are loaded when IAST is disabled or unavailable.
-
Tracing
- internal: Fixes performance overhead of Python distribution parsing for internal telemetry.
2.21.0
New Features
- LLM Observability
openai: Introduces tracing support to the OpenAI integration for Python versions 3.12 and 3.13.
Deprecation Notes
- Tracing
- Moves
ddtrace.provider.BaseContextProvidertoddtrace.trace.BaseContextProvider. Theddtrace.providermodule is deprecated and will be removed in v3.0.0. - Deprecates the following constants in
ddtrace.constantsmodule:ANALYTICS_SAMPLE_RATE_KEYSAMPLE_RATE_METRIC_KEYSAMPLING_PRIORITY_KEYSAMPLING_AGENT_DECISIONSAMPLING_RULE_DECISIONSAMPLING_LIMIT_DECISIONORIGIN_KEYUSER_ID_KEYHOSTNAME_KEYRUNTIME_FAMILYBASE_SERVICE_KEYSPAN_MEASURED_KEYKEEP_SPANS_RATE_KEYMULTIPLE_IP_HEADERSCONFIG_ENDPOINT_ENVCONFIG_ENDPOINT_RETRIES_ENVCONFIG_ENDPOINT_TIMEOUT_ENV
- Internalizes the
ddtrace.settings.configmodule and deprecates the followingddtrace.configattributes:http, useDD_TRACE_HEADER_TAGSenvironment variable instead.http_server, useDD_TRACE_HTTP_SERVER_ERROR_STATUSESenvironment variable instead.trace_headers, this attribute is internal to the tracer.header_is_traced, this attribute is internal to the tracer.convert_rc_trace_sampling_rules, this attribute is internal to the tracer.enable_remote_configuration, useDD_REMOTE_CONFIGURATION_ENABLEDenvironment variable instead.get_from, useddtrace.trace.Pinto set instance level configurations.
- Moves
Bug Fixes
-
CI Visibility
- Fixes an issue where Auto Test Retries with pytest would always consider retries of tests defined inside unittest classes to be successful.
-
Code Security
- Resolves an issue where the usage of
calloncedecorator could trigger an import loop
- Resolves an issue where the usage of
-
LLM Observability
- Resolves an issue where explicitly only using
LLMObs.enable()to configure LLM Observability without environment variables would not automatically propagate distributed tracing headers. - Resolves an issue where annotating a span with non latin-1 (but valid utf-8) input/output values resulted in encoding errors.
- Resolves an issue where extracting token metadata from openai streamed chat completion token chunks caused an IndexError
openai: Fixes a patching issue where asynchronous moderation endpoint calls resulted in coroutine scheduling errors.vertexai: Resolves an issue withchat.send_message()where the content keyword argument was not parsed correctly.
- Resolves an issue where explicitly only using
-
Profiling
- Fixes
SystemErrorfrom the memory profiler returning NULL when collecting events
- Fixes
Other Changes
- Tracing
- Ensures the ddtrace library does not use deprecated APIs internally. Deprecation warnings should only be logged when the user's code is using deprecated APIs.
cassandra,cherrypy,flask_cache,starlette: Ensures a deprecation warning is not raised when patching these integrations viaddtrace-runandimport ddtrace.auto.
2.21.0rc1
New Features
- LLM Observability
openai: Introduces tracing support to the OpenAI integration for Python versions 3.12 and 3.13.
Deprecation Notes
- Tracing
- Moves
ddtrace.provider.BaseContextProvidertoddtrace.trace.BaseContextProvider. Theddtrace.providermodule is deprecated and will be removed in v3.0.0. - Deprecates the following constants in
ddtrace.constantsmodule:ANALYTICS_SAMPLE_RATE_KEYSAMPLE_RATE_METRIC_KEYSAMPLING_PRIORITY_KEYSAMPLING_AGENT_DECISIONSAMPLING_RULE_DECISIONSAMPLING_LIMIT_DECISIONORIGIN_KEYUSER_ID_KEYHOSTNAME_KEYRUNTIME_FAMILYBASE_SERVICE_KEYSPAN_MEASURED_KEYKEEP_SPANS_RATE_KEYMULTIPLE_IP_HEADERSCONFIG_ENDPOINT_ENVCONFIG_ENDPOINT_RETRIES_ENVCONFIG_ENDPOINT_TIMEOUT_ENV
- Internalizes the
ddtrace.settings.configmodule and deprecates the followingddtrace.configattributes:http, useDD_TRACE_HEADER_TAGSenvironment variable instead.http_server, useDD_TRACE_HTTP_SERVER_ERROR_STATUSESenvironment variable instead.trace_headers, this attribute is internal to the tracer.header_is_traced, this attribute is internal to the tracer.convert_rc_trace_sampling_rules, this attribute is internal to the tracer.enable_remote_configuration, useDD_REMOTE_CONFIGURATION_ENABLEDenvironment variable instead.get_from, useddtrace.trace.Pinto set instance level configurations.
- Moves
Bug Fixes
-
CI Visibility
- Fixes an issue where Auto Test Retries with pytest would always consider retries of tests defined inside unittest classes to be successful.
-
Code security
- Resolves an issue where the usage of callonce decorator could trigger an import loop
-
LLM Observability
- Resolves an issue where explicitly only using
LLMObs.enable()to configure LLM Observability without environment variables would not automatically propagate distributed tracing headers. - Resolves an issue where annotating a span with non latin-1 (but valid utf-8) input/output values resulted in encoding errors.
- Resolves an issue where extracting token metadata from openai streamed chat completion token chunks caused an IndexError.
openai: Fixes a patching issue where asynchronous moderation endpoint calls resulted in coroutine scheduling errors.vertexai: Resolves an issue withchat.send_message()where the content keyword argument was not parsed correctly.
- Resolves an issue where explicitly only using
-
Profiling
- Fixes SystemError from the memory profiler returning NULL when collecting events
Other Changes
- Tracing
- Ensures the ddtrace library does not use deprecated APIs internally. Deprecation warnings should only be logged when the user's code is using deprecated APIs.
cassandra,cherrypy,flask_cache,starlette: Ensures a deprecation warning is not raised when patching these integrations viaddtrace-runandimport ddtrace.auto.
2.20.1
Deprecation Notes
- Tracing
- Moves
ddtrace.provider.BaseContextProvidertoddtrace.trace.BaseContextProvider. Theddtrace.providermodule is deprecated and will be removed in v3.0.0. - Deprecates the following constants in
ddtrace.constantsmodule:ANALYTICS_SAMPLE_RATE_KEYSAMPLE_RATE_METRIC_KEYSAMPLING_PRIORITY_KEYSAMPLING_AGENT_DECISIONSAMPLING_RULE_DECISIONSAMPLING_LIMIT_DECISIONORIGIN_KEYUSER_ID_KEYHOSTNAME_KEYRUNTIME_FAMILYBASE_SERVICE_KEYSPAN_MEASURED_KEYKEEP_SPANS_RATE_KEYMULTIPLE_IP_HEADERSCONFIG_ENDPOINT_ENVCONFIG_ENDPOINT_RETRIES_ENVCONFIG_ENDPOINT_TIMEOUT_ENV
- Internalizes the
ddtrace.settings.configmodule and deprecates the followingddtrace.configattributes:http, useDD_TRACE_HEADER_TAGSenvironment variable instead.http_server, useDD_TRACE_HTTP_SERVER_ERROR_STATUSESenvironment variable instead.trace_headers, this attribute is internal to the tracer.header_is_traced, this attribute is internal to the tracer.convert_rc_trace_sampling_rules, this attribute is internal to the tracer.enable_remote_configuration, useDD_REMOTE_CONFIGURATION_ENABLEDenvironment variable instead.get_from, useddtrace.trace.Pinto set instance level configurations.
- Moves
Bug Fixes
- CI Visibility
- Fixes an issue where Auto Test Retries with pytest would always consider retries of tests defined inside unittest classes to be successful.
- LLM Observability
- Resolves an issue where explicitly only using
LLMObs.enable()to configure LLM Observability without environment variables would not automatically propagate distributed tracing headers. - This fix resolves an issue where annotating a span with non latin-1 (but valid utf-8) input/output values resulted in encoding errors.
- This fix resolves an issue where extracting token metadata from openai streamed chat completion token chunks caused an IndexError.
- Resolves an issue where explicitly only using
- Tracing
vertexai: Resolves an issue withchat.send_message()where the content keyword argument was not parsed correctly.
- Profiling
- Fix SystemError from the memory profiler returning NULL when collecting events
Other Changes
- Tracing
- Ensures the ddtrace library does not use deprecated APIs internally. Deprecation warnings should only be logged when the user's code is using deprecated APIs.
cassandra,cherrypy,flask_cache,starlette: Ensures a deprecation warning is not raised when patching these integrations viaddtrace-runandimport ddtrace.auto.
3.0.0rc2
Upgrade Notes
-
LLM Observability
langchain: Removes thelangchain.tokens.total_costspan metric for OpenAI calls. For continued cost estimation of OpenAI calls, enable LLM Observability.langchain: Removes prompt-completion log sampling from the LangChain integration. To continue logging prompt completions, enable LLM Observability.langchain: Removes integration metrics from the LangChain integration. To continue tracking operational metrics from the OpenAI integration, enable LLM Observability or use trace metrics instead.openai: Removes prompt-completion log sampling from the OpenAI integration. To continue logging prompt completions, enable LLM Observability.openai: Removes integration metrics from the OpenAI integration. To continue tracking operational metrics from the OpenAI integration, enable LLM Observability or use trace metrics instead.
-
Tracing
- Drops support for multiple Tracer instances in the same process. Use
ddtrace.trace.tracerto access the global tracer instance. - Drops support for multiple tracer instances,
ddtrace.trace.Tracercan not be reinitialized. - Removes deprecated parameters from
Tracer.configure(...)method and removes theTracer.samplerattribute. - configurations: Drops support for deprecated tracing configurations. The following configurations are no longer supported:
DD_TRACE_SAMPLE_RATE, useDD_TRACE_SAMPLING_RULESinstead.DD_TRACE_API_VERSION=v0.3, the defaultv0.5version is used instead.DD_ANALYTICS_ENABLED, Datadog Analytics is no longer supported.DD_TRACE_ANALYTICS_ENABLED, Datadog Analytics is no longer supported.DD_HTTP_CLIENT_TAG_QUERY_STRING,DD_TRACE_HTTP_CLIENT_TAG_QUERY_STRINGshould be used instead.DD_TRACE_SPAN_AGGREGATOR_RLOCK, disabling the span aggregator rlock is no longer supported.
- configurations: Drops support for configuring
DD_TRACE_METHODSwith the[]notation. EnsureDD_TRACE_METHODSuse the:notation instead. - opentracing: Removes the deprecated
ddtracerparameter fromddtrace.opentracer.tracer.Tracer(). - sampling: Drops support for configuring sampling rules using functions and regex in the
ddtrace.tracer.sampler.rules[].choose_matcher(...)method and removes thetimestamp_nsparameter fromddtrace.internal.rate_limiter.RateLimiter.is_allowed(). - span: Removes the deprecated
Span.sampledproperty.
- Drops support for multiple Tracer instances in the same process. Use
New Features
- Tracing
valkey: Adds automatic instrumentation of the Valkey package. Thank you AhmadMasry!
Bug Fixes
- Tracing
aiohttp: Adds the environment variableDD_AIOHTTP_CLIENT_DISABLE_STREAM_TIMING_FOR_MEM_LEAKto address a potential memory leak in theaiohttpintegration. When set to true, this flag may cause streamed response span timing to be inaccurate. The flag defaults to false.- logging: Resolves an an unneeded info log being logged on process exit due to a forksafe hook being unregistered that was never registered to begin with.
3.0.0rc1
Upgrade Notes
-
CI Visibility
-
Official release of the new version of the pytest plugin, introducing the following features:
- Auto Test Retries
- Early Flake Detection
- Improved coverage collection for Test Impact Analysis (formerly Intelligent Test Runner), using an internal collection method instead of coverage.py, with improved dependency discovery.
NOTE: this new version of the plugin introduces breaking changes:
module,suite, andtestnames are now parsed from theitem.nodeidattribute- test names now include the class for class-based tests
- Test skipping by Test Impact Analysis (formerly Intelligent Test Runner) is now done at the suite level, instead of at the test level
A beta version of the plugin had been available since v2.18.0, and could be enabled via the
DD_PYTEST_USE_NEW_PLUGIN_BETAenvironment variable. The new version is now the default, and the environment variable is not used anymore.
-
-
LLM Observability
- Support for the deprecated environment variable
DD_LLMOBS_APP_NAMEhas been removed. - Removes the deprecated
parametersargument fromLLMObs annotate(). Usemetadatainstead. openai: Drops tracing and LLM Observability support for OpenAI 0.x versions. To maintain support, upgrade toopenai>=1.0.- langchain: removed tracing support for
langchain.chains.base.Chains. To maintain support, migrate to using Langchain's LCEL instead. - langchain: Drops tracing and LLM Observability support for Langchain v0.0.x versions.
- Support for the deprecated environment variable
-
Profiling
- Bumps libdatadog dependency to v15.0.0.
-
Tracing
- Removes deprecated interfaces from all integrations.
- propagation: Setting
DD_TRACE_PROPAGATION_STYLEtob3 single headeris no longer supported. Useb3instead. aws_lambda: Drops support foraws_lambda<=6.105.0.
Deprecation Notes
-
ASM
- Deprecated env var
DD_APPSEC_AUTOMATED_USER_EVENTS_TRACKINGis now removed. Please use the new env varDD_APPSEC_AUTO_USER_INSTRUMENTATION_MODEinstead.
- Deprecated env var
-
LLM Observability
- The
\_DD_LLMOBS_EVALUATORSenvironment variable is deprecated and will be removed in ddtrace 3.0.0.
As an alternative to\_DD_LLMOBS_EVALUATORS, you can use DD_LLMOBS_EVALUATORS instead. To migrate, replace\_DD_LLMOBS_EVALUATORSwithDD_LLMOBS_EVALUATORS. - The
\_DD_LLMOBS_EVALUATOR_SAMPLING_RULESenvironment variable is deprecated and will be removed in ddtrace 3.0.0.
As an alternative to\_DD_LLMOBS_EVALUATOR_SAMPLING_RULES, you can useDD_LLMOBS_EVALUATOR_SAMPLING_RULESinstead. To migrate, replace\_DD_LLMOBS_EVALUATOR_SAMPLING_RULESwithDD_LLMOBS_EVALUATOR_SAMPLING_RULES.
- The
-
Tracing
- Moves
ddtrace.provider.BaseContextProvidertoddtrace.trace.BaseContextProvider. Theddtrace.providermodule is deprecated and will be removed in v3.0.0. - Deprecates the following constants in
ddtrace.constantsmodule:ANALYTICS_SAMPLE_RATE_KEYSAMPLE_RATE_METRIC_KEYSAMPLING_PRIORITY_KEYSAMPLING_AGENT_DECISIONSAMPLING_RULE_DECISIONSAMPLING_LIMIT_DECISIONORIGIN_KEYUSER_ID_KEYHOSTNAME_KEYRUNTIME_FAMILYBASE_SERVICE_KEYSPAN_MEASURED_KEYKEEP_SPANS_RATE_KEYMULTIPLE_IP_HEADERSCONFIG_ENDPOINT_ENVCONFIG_ENDPOINT_RETRIES_ENVCONFIG_ENDPOINT_TIMEOUT_ENV
- Internalizes the
ddtrace.settings.configmodule and deprecates the followingddtrace.configattributes:http, useDD_TRACE_HEADER_TAGSenvironment variable instead.http_server, useDD_TRACE_HTTP_SERVER_ERROR_STATUSESenvironment variable instead.trace_headers, this attribute is internal to the tracer.header_is_traced, this attribute is internal to the tracer.convert_rc_trace_sampling_rules, this attribute is internal to the tracer.enable_remote_configuration, useDD_REMOTE_CONFIGURATION_ENABLEDenvironment variable instead.get_from, useddtrace.trace.Pinto set instance level configurations.
- Removes deprecated attributes from
ddtrace.config.
- Moves
New Features
-
Removes code and tests related to Python 3.7, breaking the library's compatibility with this Python version.
-
ASM
- Introduces use of meta struct for appsec event reports. This will improve performances. ASM will now require at least agent version 7.35.0 to work as expected.
-
Code Security (IAST)
- Introduces Code Security support to PyMySQL and MySQLDB integrations.
- XSS detection for Django applications, which will be displayed on your DataDog Vulnerability Explorer dashboard. See the Application Vulnerability Management documentation for more information about this feature.
- Implements the detection of the Stacktrace-Leak vulnerability for Django, Flask and FastAPI.
-
LLM Observability
- openai: Introduces tracing support to the OpenAI integration for Python versions 3.12 and 3.13.
- Introduces an integration with the RAGAS evaluation framework to continuously monitor
the performance of context-augmented LLM generations in production.
The integration supports evaluating LLM inferences with the following RAGAS metrics:- Faithfulness: measures if the LLM response is faithful to the provided context.
- Answer Relevancy: measures how relevant the LLM response is to the user input.
- Context Precision: measures how effectively the context is used in the generated response.
To learn more, see the LLM Observability evaluations guide.
Bug Fixes
-
ASM
- Resolves an issue where IAST modules could be loaded, even if disabled, which could create an ImportError exception on Windows.
-
CI Visibility
- Fixes an issue where Auto Test Retries with pytest would always consider retries of tests defined inside unittest classes to be successful.
-
Code security (IAST)
- Resolves an issue where the usage of callonce decorator could trigger an import loop
-
LLM Observability
- Resolves an issue where successive calls to
LLMObs.annotate()on the same span caused overwriting of metrics, metadata, and prompt dictionaries. Now, callingLLMObs.annotate()will merge new metrics/metadata/prompt values with any existing ones. - Resolves an issue where spans were being enqueued to an inactive evaluator runner which caused noisy logs related to the evaluator runner buffer being full.
- Resolves an issue where explicitly only using
LLMObs.enable()to configure LLM Observability without environment variables would not automatically propagate distributed tracing headers. - Resolves an issue where annotating a span with non latin-1 (but valid utf-8) input/output values resulted in encoding errors.
- Resolves an issue where extracting token metadata from openai streamed chat completion token chunks caused an IndexError.
openai: Fixes a patching issue where asynchronous moderation endpoint calls resulted in coroutine scheduling errors.vertexai: Resolves an issue withchat.send_message()where the content keyword argument was not parsed correctly.
- Resolves an issue where successive calls to
-
Profiling
- Fixes an issue on arm64 macOS where the profiler was not able to find native extension modules to enable the following features:
DD_PROFILING_TIMELINE_ENABLEDandDD_PROFILING_STACK_V2_ENABLED. - Fixes SystemError from the memory profiler returning NULL when collecting events
- Fixes an issue on arm64 macOS where the profiler was not able to find native extension modules to enable the following features:
Other Changes
- Tracing
- Ensures the ddtrace library does not use deprecated APIs internally. Deprecation warnings should only be logged when the user's code is using deprecated APIs.
cassandra,cherrypy,flask_cache,starlette: Ensures a deprecation warning is not raised when patching these integrations viaddtrace-runandimport ddtrace.auto.- Removes the deprecated tracing modules and constants from the
ddtracepackage.
2.19.3
2.19.2
Bug Fixes
- Tracing
- celery: Fixes an issue where
celery.applyspans from Celery prerun got closed too soon leading to span tags being missing. - openai: Fixes a patching issue where asynchronous moderation endpoint calls resulted in coroutine scheduling errors.
- openai: Ensures the OpenAI integration is compatible with Python versions 3.12 and 3.13.
- vertexai: Resolves an issue with
chat.send_message()where the content keyword argument was not parsed correctly.
- celery: Fixes an issue where
- LLM Observability
- This fix resolves an issue where annotating a span with non latin-1 (but valid utf-8) input/output values resulted in encoding errors.
- Lib Injection
- Fixes incorrect telemetry data payload format.