Skip to content

Commit 80dc8ca

Browse files
szegediestherk15
authored andcommitted
Add a Node.js profiler troubleshooting page (#27503)
* Add a Node.js profiler troubleshooting page * Fix a copy-paste * Add to the troubleshooting sidebar * Apply suggestions from review Co-authored-by: Esther Kim <[email protected]> --------- Co-authored-by: Esther Kim <[email protected]>
1 parent a815d70 commit 80dc8ca

File tree

2 files changed

+51
-3
lines changed

2 files changed

+51
-3
lines changed

config/_default/menus/main.en.yaml

+8-3
Original file line numberDiff line numberDiff line change
@@ -3801,21 +3801,26 @@ menu:
38013801
parent: profiler_troubleshooting
38023802
identifier: profiler_troubleshooting_ruby
38033803
weight: 604
3804+
- name: Node.js
3805+
url: profiler/profiler_troubleshooting/nodejs/
3806+
parent: profiler_troubleshooting
3807+
identifier: profiler_troubleshooting_nodejs
3808+
weight: 605
38043809
- name: .NET
38053810
url: profiler/profiler_troubleshooting/dotnet/
38063811
parent: profiler_troubleshooting
38073812
identifier: profiler_troubleshooting_dotnet
3808-
weight: 605
3813+
weight: 606
38093814
- name: PHP
38103815
url: profiler/profiler_troubleshooting/php/
38113816
parent: profiler_troubleshooting
38123817
identifier: profiler_troubleshooting_php
3813-
weight: 606
3818+
weight: 607
38143819
- name: C/C++/Rust
38153820
url: profiler/profiler_troubleshooting/ddprof/
38163821
parent: profiler_troubleshooting
38173822
identifier: profiler_troubleshooting_linux
3818-
weight: 607
3823+
weight: 608
38193824
- name: Guides
38203825
url: profiler/guide/
38213826
parent: profiler
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: Troubleshooting the Node.js Profiler
3+
code_lang: nodejs
4+
type: multi-code-lang
5+
code_lang_weight: 10
6+
further_reading:
7+
- link: '/tracing/troubleshooting'
8+
tag: 'Documentation'
9+
text: 'APM Troubleshooting'
10+
---
11+
12+
## Missing profiles in the profile search page
13+
14+
If you've configured the profiler and don't see profiles in the profile search page, turn on [debug mode][1] and [open a support ticket][2] with debug files and the following information:
15+
16+
- Operating system type and version (for example, Linux Ubuntu 20.04)
17+
- Runtime type, version, and vendor (for example, Node.js 18.19.01)
18+
19+
## Profiler fails to load native component
20+
21+
The profiler might fail to find and load its native component. In this situation, your application logs or console display an error message similar to:
22+
23+
```
24+
Error: No native build was found for runtime=node abi=109 platform=linuxglibc arch=x64
25+
```
26+
27+
If you are using a bundler such as esbuild or webpack, which is used by frameworks such as Next.js, see [Bundling with the Node.js tracer][3]. The Datadog tracer and profiler have special requirements when used with bundlers.
28+
29+
Node versions available through package managers may sometimes incorrectly report their ABI (Application Binary Interface) version. For example, Ubuntu Linux 24.04.01 LTS includes a Node 18 package that incorrectly reports its ABI version as 109, instead of the correct version, 108, for Node 18.
30+
31+
The profiler ships with prebuilt binaries for all supported combinations of platforms, CPU architectures, and Node ABI versions in `node_modules/@datadog/pprof/prebuilds/${platform}-${arch}/node-${abi}.node` files. If your Node version reports an incompatible ABI version, there won't be a prebuilt binary available, causing the profiler to fail to start.
32+
33+
To resolve this issue, download and install Node from the [Node.js website][4] instead of using your operating system's package manager, or
34+
update your operating system to a newer version that might include an updated version of Node.js without this issue.
35+
36+
## Further Reading
37+
38+
{{< partial name="whats-next/whats-next.html" >}}
39+
40+
[1]: /tracing/troubleshooting/#tracer-debug-logs
41+
[2]: /help/
42+
[3]: /tracing/trace_collection/automatic_instrumentation/dd_libraries/nodejs/#bundling
43+
[4]: https://nodejs.org/

0 commit comments

Comments
 (0)