MIGRATING.md
This guide describes the steps to upgrade dd-trace from a major version to the next. If you are having any issues related to migrating, please feel free to open an issue or contact our support team.
iast.securityControlsConfiguration (and the legacy alias
experimental.iast.securityControlsConfiguration) is no longer accepted as a
programmatic option. Set DD_IAST_SECURITY_CONTROLS_CONFIGURATION instead.
whitelist and blacklist options removed from typesThe deprecated whitelist / blacklist plugin options on the http, ioredis,
iovalkey, and redis plugin interfaces are no longer part of the v6 TypeScript
surface. Use allowlist / blocklist instead — both have been the canonical
names for several majors.
DD_TRACE_STARTUP_LOGS defaults to trueStartup configuration is logged to the console by default. Set
DD_TRACE_STARTUP_LOGS=false to silence it.
experimental.iast configuration removedThe experimental.iast.* programmatic aliases have been removed. Use the
canonical top-level iast.* fields and DD_IAST_* environment variables
instead.
appsec.extendedHeadersCollection.{enabled,redaction,maxHeaders} and
appsec.rasp.bodyCollection are no longer part of the v6 TypeScript surface.
Configure these features through the Datadog UI and Remote Configuration
instead — the runtime keeps consuming the values pushed by RC.
The matching DD_APPSEC_COLLECT_ALL_HEADERS,
DD_APPSEC_HEADER_COLLECTION_REDACTION_ENABLED,
DD_APPSEC_MAX_COLLECTED_HEADERS, and DD_APPSEC_RASP_COLLECT_REQUEST_BODY
environment variables are deprecated in v6 and will follow in a future major.
experimental.b3 removedThe experimental.b3 programmatic flag and DD_TRACE_EXPERIMENTAL_B3_ENABLED
env var are gone. Configure b3 propagation via DD_TRACE_PROPAGATION_STYLE
directly (see the renamed-style note below).
DD_PROFILING_EXPERIMENTAL_CODEHOTSPOTS_ENABLED,
DD_PROFILING_EXPERIMENTAL_CPU_ENABLED,
DD_PROFILING_EXPERIMENTAL_ENDPOINT_COLLECTION_ENABLED, and
DD_PROFILING_EXPERIMENTAL_TIMELINE_ENABLED are gone. Use the canonical names
without the _EXPERIMENTAL_ segment.
DD_TRACE_EXPERIMENTAL_RUNTIME_ID_ENABLED removedUse DD_RUNTIME_METRICS_RUNTIME_ID_ENABLED instead.
"b3 single header" propagation style renamed to "b3"The historical 'b3' value used to mean multi-header; per the OTel b3
propagator spec, 'b3' now means single-header. Multi-header propagation is
the existing 'b3multi' value. The legacy 'b3 single header' spelling is
still accepted on DD_TRACE_PROPAGATION_STYLE and the programmatic option as
a quiet alias for 'b3'; prefer the canonical 'b3' going forward.
experimental.appsec configuration removedThe experimental.appsec.* programmatic aliases (and
experimental.appsec.standalone.enabled) have been removed. Use the canonical
top-level appsec.* fields, and apmTracingEnabled (or
DD_APM_TRACING_ENABLED) to control standalone ASM mode.
ingestion option removedThe ingestion: { sampleRate, rateLimit } wrapper has been removed. Set
sampleRate and rateLimit directly on the top-level TracerOptions object,
or use DD_TRACE_SAMPLE_RATE / DD_TRACE_RATE_LIMIT.
Node.js 16 has reached EOL in September 2023 and is no longer supported. Generally speaking, we highly recommend always keeping Node.js up to date regardless of our support policy.
trace<T> TypeScript declarationThe TypeScript declaration for trace<T> has been updated to enforce
that calls to tracer.trace(name, fn) must receive a function which takes at least
the span object. Previously the span was technically optional when it should not have
been as the span must be handled.
Node.js 14 has reached EOL in April 2023 and is no longer supported. Generally speaking, we highly recommend always keeping Node.js up to date regardless of our support policy.
orphanable option was removedThis option was only useful internally for a single integration that has since
been removed. It was never useful for manual instrumentation since all that is
needed to orphan a span on creation is to use
tracer.trace('web.request', { childOf: null }).
jest-jasmine2 has been removedThe default test runner for Jest was changed to jest-circus around 2 years ago and
is no longer supported by our Jest integration for CI Visibility. We recommend
switching to jest-circus to anyone still using jest-jasmine2.
We now support only Next.js 10.2 and up.
Node.js 12 has been EOL since April 2022 and is no longer supported. Generally speaking, we highly recommend always keeping Node.js up to date regardless of our support policy.
HTTP query strings are now reported by default as part of the http.url tag.
This change is considered breaking only because there might be sensitive data
in the query string. A default regular expression based obfuscator is provided
for common use cases like API keys, but if your use case is not covered, the
DD_TRACE_OBFUSCATION_QUERY_STRING_REGEXP
environment variable can be used to control what is obfuscated, and a value of
.* would redact the query string entirely.
The HTTP integration now uses web.request for incoming requests and continues
to use http.request for outgoing requests. When using a supported web
framework like Express, this change will have no effect because the root span
would already have an operation name override like express.request.
Any monitor
on http.request for incoming requests should be updated to web.request.
With this change, both operation names also appear under the main service name
and are no longer split between the server service name and a separate client
service name suffixed with -http-client.
The gRPC integration now uses grpc.server for incoming requests and
grpc.client for outgoing requests. Any
monitor
on grpc.request should be updated to one of these.
With this change, both operation names also appear under the main service name
and are no longer split between the server service name and a separate client
service name suffixed with -http-client.
fs integrationThe fs integration was removed as it was originally added without an actual
use case, and it's been problematic ever since. It's noisy, the output is
confusing when using streams, errors that are handled higher in the stack end up
being captured, etc.
If you had any use for file system instrumentation, please let us know so we can provide an alternative.
It's no longer possible to bind promises using tracer.scope().bind(promise) or
event emitters using tracer.scope().bind(emitter). These were historically
added mostly for internal use, and changes to context propagation over the years
made them unnecessary, both internally and externaly. If one of these is used
anywhere, the call will simply be ignored and no binding will occur.
To bind the then handler of a promise, bind the function directly directly:
promise.then(tracer.scope().bind(handler))
To bind all listeners for an event, wrap the call to emit directly instead:
tracer.scope().activate(span, () => {
emitter.emit('event')
})
To bind individual listeners, bind the listener function directly instead:
emitter.on('event', tracer.scope().bind(listener, span))
The following APIs have been deprecated for a long time and have now been completely removed:
tracer.currentSpan()tracer.bindEmitter()Since these have not been recommended nor publicly documented for years at this point, there should be no impact as no application is expected to be using them.
dd-trace/cypress/plugin and dd-trace/cypress/support are removed, so you won't
be able to use them for your cypress instrumentation. Use dd-trace/ci/cypress/plugin
and dd-trace/ci/cypress/support instead for your plugin and support configuration
respectively.
The use of 'dd-trace/ci/jest/env' in testEnvironment
is no longer supported.
To instrument jest tests now, add '-r dd-trace/ci/init' to the NODE_OPTIONS environment
variable passed to the process running the tests, for example, NODE_OPTIONS='-r dd-trace/ci/init' yarn test.
The use of --require dd-trace/ci/init as a mocha flag is no longer supported.
To instrument mocha tests now, add '-r dd-trace/ci/init' to the NODE_OPTIONS environment
variable passed to the process running the tests, for example, NODE_OPTIONS='-r dd-trace/ci/init' yarn test.
The use of --require-module dd-trace/ci/init as a cucumber-js flag is no longer supported.
To instrument cucumber-js tests now, add '-r dd-trace/ci/init' to the NODE_OPTIONS environment
variable passed to the process running the tests, for example, NODE_OPTIONS='-r dd-trace/ci/init' yarn test.
The following configuraton options are no longer available programmatically and must be configured using these environment variables:
enabled -> DD_TRACE_ENABLED=true|falsedebug -> DD_TRACE_DEBUG=true|falseIf environment variables were already used for these options, no action is needed.
The following configuration options were completely removed and will no longer have any effect:
scopeStartup logs are now disabled by default and can be enabled if needed with
DD_TRACE_STARTUP_LOGS=true.
The original scope manager has been replaced several years ago and has now been
removed. Any code referencing tracer.scopeManager() should be removed or
replaced with tracer.scope() which is documented
here.
Support for nested objects as tags as been removed. When adding an object as a tag value, only properties that exist on that object directly will be added as tags. If nested properties are also needed, these should be added by hand.
For example:
const obj = {
a: 'foo',
b: {
c: 'bar'
}
}
// 1.0
span.setTag('test', obj) // add test.a and test.b.c
// 2.0
span.setTag('test', obj) // add test.a
span.setTag('test.b', obj.b) // add test.b.c
Arrays are no longer supported and must be converted to string manually.
Outgoing request filtering is no longer supported and is now only available for
incoming requests. This means that the blocklist and allowlist options on
the http integration no longer have any effect.