Hey guys, recently i was installing signoz on one ...
# support
a
Hey guys, recently i was installing signoz on one of my nodeJS app and got this error- (Note- The app is running on a graviton server) Any help?
Copy code
node_modules/@opentelemetry/instrumentation-redis/build/src/types.d.ts:8:26 - error TS2694: Namespace '"/home/ec2-user/sapphire-pm2/source/node_modules/redis/dist/index"' has no exported member 'Callback'.
8     callback: redisTypes.Callback<unknown>;
                           ~~~~~~~~
node_modules/@opentelemetry/otlp-exporter-base/build/src/platform/browser/util.d.ts:10:84 - error TS2304: Cannot find name 'BlobPropertyBag'.
10 export declare function sendWithBeacon(body: string, url: string, blobPropertyBag: BlobPropertyBag, onSuccess: () => void, onError: (error: OTLPExporterError) => void): void;
                                                                                      ~~~~~~~~~~~~~~~
src/core/tracing.js:27:6 - error TS2339: Property 'then' does not exist on type 'void'.
27     .then(() => console.log('Tracing initialized'))
        ~~~~
Found 3 errors in 3 files.
Errors  Files
     1  node_modules/@opentelemetry/instrumentation-redis/build/src/types.d.ts:8
     1  node_modules/@opentelemetry/otlp-exporter-base/build/src/platform/browser/util.d.ts:10
     1  src/core/tracing.js:27
p
@Vishal Sharma
v
How did you instrument? Did you follow any tutorial?
a
Yes I did
Node JS
app
v
Did you use all in one instrumentation method?
a
yeah i installed all 3 of them
step by step
v
This issue on opentelemetry seems related to your issue: https://github.com/open-telemetry/opentelemetry-js/issues/3580
Can you follow this and report if it worked?
a
Checking