File tree Expand file tree Collapse file tree 2 files changed +2
-309
lines changed
packages/nestjs/src/integrations Expand file tree Collapse file tree 2 files changed +2
-309
lines changed Original file line number Diff line number Diff line change
1
+ import { NestInstrumentation as NestInstrumentationCore } from '@opentelemetry/instrumentation-nestjs-core' ;
1
2
import { defineIntegration } from '@sentry/core' ;
2
3
import { generateInstrumentOnce } from '@sentry/node' ;
3
- import { NestInstrumentation } from './sentry-nest-core-instrumentation' ;
4
4
import { SentryNestEventInstrumentation } from './sentry-nest-event-instrumentation' ;
5
5
import { SentryNestInstrumentation } from './sentry-nest-instrumentation' ;
6
6
7
7
const INTEGRATION_NAME = 'Nest' ;
8
8
9
9
const instrumentNestCore = generateInstrumentOnce ( 'Nest-Core' , ( ) => {
10
- return new NestInstrumentation ( ) ;
10
+ return new NestInstrumentationCore ( ) ;
11
11
} ) ;
12
12
13
13
const instrumentNestCommon = generateInstrumentOnce ( 'Nest-Common' , ( ) => {
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments