Skip to content

Crash on init within a docker container - fix: warn about Node ABI version #14015

Closed
@stoneburner

Description

@stoneburner

Is there an existing issue for this?

How do you use Sentry?

Sentry Saas (sentry.io)

Which SDK are you using?

@sentry/nodejs

SDK Version

8.34.0

Framework Version

Express

Link to Sentry event

No response

Reproduction Example/SDK Setup

No response

Steps to Reproduce

Run app within docker container

Expected Result

the add does not crash

Actual Result

The app crashes with:

Error: Cannot find module '/home/node/app/node_modules/@sentry/profiling-node/lib/sentry_cpu_profiler-linux-x64-musl-131.node'
Require stack:
- Error: Cannot find module '/home/node/app/node_modules/@sentry/profiling-node/lib/sentry_cpu_profiler-linux-x64-musl-131.node'
R node:internal/modules/cjs/loader:1262
  throw err;
  ^

Note the version 131 it wants to load indeed does not exists, when i run nodejs locally and test the code that is used by sentry node profiler i get this:

Welcome to Node.js v22.9.0.
Type ".help" for more information.
> const nodeAbi = require('node-abi');
undefined
> const node_process = require('node:process');
undefined
> nodeAbi.getAbi(node_process.versions.node, 'node');
'127'
>

The file with 127 does exist and sentry works normally

The docker file just uses the official docker image and nothing special:

# Use the official Node.js image as the base image
FROM node:current-alpine

# Set the working directory inside the container
WORKDIR /home/node/app

# Copy package.json and package-lock.json to the working directory
COPY package*.json ./

# Install dependencies
RUN npm install
RUN npm install -g nodemon

# Start the server
CMD ["nodemon", "-x", "bin/www"]

I was forced to remove sentry from the apps within the company so we can deploy them and i rather would reactivate sentry.

Metadata

Metadata

Assignees

Labels

Package: profiling-nodeIssues related to the Sentry Profiling Node SDK

Type

Projects

Status

No status

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions