The latest Node.js Tracer supports Node.js versions >=18. For a full list of Datadog’s Node.js version and framework support (including legacy and maintenance versions), see the Compatibility Requirements page.
Before you begin, make sure you’ve already installed and configured the Agent. Then, complete the following steps to add the Datadog tracing library to your Node.js application to instrument it.
To install the Datadog tracing library using npm for Node.js 18+, run:
npm install dd-trace --save
To install the Datadog tracing library (version 4.x of dd-trace) for end-of-life Node.js version 16, run:
npm install dd-trace@latest-node16
For more information on Datadog’s distribution tags and Node.js runtime version support, see the Compatibility Requirements page.
If you are upgrading from a previous major version of the library (0.x, 1.x, 2.x, 3.x or 4.x) to another major version, read the Migration Guide to assess any breaking changes.
Import and initialize the tracer either in code or with command line arguments. The Node.js tracing library needs to be imported and initialized before any other module.
After you have completed setup, if you are not receiving complete traces, including missing URL routes for web requests, or disconnected or missing spans, confirm the tracer has been imported and initialized correctly. The tracing library being initialized first is necessary for the tracer to properly patch all of the required libraries for automatic instrumentation.
EcmaScript Modules (ESM) applications require an additional command line argument. Run this command regardless of how the tracer is imported and initialized.