Profiling
By default, Sentry error events will not get trace context unless you configure the scope with the transaction, as illustrated in the example below.
If you're adopting Profiling in a high-throughput environment, we recommend testing prior to deployment to ensure that your service's performance characteristics maintain expectations.
Installation
Node profiling is available starting in @sentry/profiling-node
version 0.3.0
.
You have to have the @sentry/node
(minimum version 7.44.1
) package installed.
npm install --save @sentry/node @sentry/profiling-node
Enabling Profiling
To enable profiling, import @sentry/profiling-node, add ProfilingIntegration to your integrations, and set the profilesSampleRate.
const Sentry = require("@sentry/node");
const { ProfilingIntegration } = require("@sentry/profiling-node");
Sentry.init({
dsn: "https://examplePublicKey@o0.ingest.sentry.io/0",
integrations: [
// Add our Profiling integration
new ProfilingIntegration(),
],
tracesSampleRate: 1.0,
// Set sampling rate for profiling - this is relative to tracesSampleRate
profilesSampleRate: 1.0,
});
const transaction = Sentry.startTransaction({
op: "transaction",
name: "My Transaction",
});
// Any code executed between startTransaction and transaction.finish
// will now be automatically profiled.
transaction.finish();
How Does It Work?
Under the hood, the Sentry profiler uses V8's CpuProfiler to collect stack samples. This means that sentry/profiling-node is written as a native add-on for Node and won't run in environments like Deno or Bun. Profiling enhances
Runtime Flags
The default mode of the v8 CpuProfiler is kEagerLogging which enables the profiler even when no profiles are active - this is good because it makes calls to startProfiling fast at the tradeoff for constant CPU overhead. The behavior can be controlled via the SENTRY_PROFILER_LOGGING_MODE environment variable with values of eager|lazy. If you opt to use the lazy logging mode, calls to startProfiling may be slow (depending on environment and node version, it can be in the order of a few hundred ms).
Example of starting a server with lazy logging mode.
# Run profiler in lazy mode
SENTRY_PROFILER_LOGGING_MODE=lazy node server.js
We recommend you have your own CPU resource-monitoring in place, because the actual resource use could be environment-dependent.
Precompiled Binaries
Starting from version 0.1.0, @sentry/profiling-node package precompiles binaries for a number of common architectures. This minimizes the tooling required to run the package and avoids compiling the package from source in most cases, which speeds up installation. The set of common architectures should cover a wide variety of use cases, but if you have feedback or experience different behavior, please open an issue on the sentry/profiling-node repository.
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) to suggesting an update ("yeah, this would be better").
- Package:
- npm:@sentry/node
- Version:
- 7.73.0
- Repository:
- https://github.com/getsentry/sentry-javascript