File tree Expand file tree Collapse file tree 8 files changed +9
-0
lines changed
google-cloud-serverless/src Expand file tree Collapse file tree 8 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ export {
8181 mysql2Integration ,
8282 mysqlIntegration ,
8383 nativeNodeFetchIntegration ,
84+ fetchBreadcrumbsIntegration ,
8485 nestIntegration ,
8586 NodeClient ,
8687 nodeContextIntegration ,
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ export {
5050 consoleIntegration ,
5151 httpIntegration ,
5252 nativeNodeFetchIntegration ,
53+ fetchBreadcrumbsIntegration ,
5354 onUncaughtExceptionIntegration ,
5455 onUnhandledRejectionIntegration ,
5556 modulesIntegration ,
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ export {
5050 consoleIntegration ,
5151 httpIntegration ,
5252 nativeNodeFetchIntegration ,
53+ fetchBreadcrumbsIntegration ,
5354 onUncaughtExceptionIntegration ,
5455 onUnhandledRejectionIntegration ,
5556 modulesIntegration ,
Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ export { spotlightIntegration } from './integrations/spotlight';
3131export { genericPoolIntegration } from './integrations/tracing/genericPool' ;
3232export { dataloaderIntegration } from './integrations/tracing/dataloader' ;
3333export { amqplibIntegration } from './integrations/tracing/amqplib' ;
34+ export { fetchBreadcrumbsIntegration } from './integrations/fetch-breadcrumbs' ;
3435
3536export { SentryContextManager } from './otel/contextManager' ;
3637export { generateInstrumentOnce } from './otel/instrument' ;
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ import { consoleIntegration } from '../integrations/console';
3030import { nodeContextIntegration } from '../integrations/context' ;
3131import { contextLinesIntegration } from '../integrations/contextlines' ;
3232
33+ import { fetchBreadcrumbsIntegration } from '../integrations/fetch-breadcrumbs' ;
3334import { httpIntegration } from '../integrations/http' ;
3435import { localVariablesIntegration } from '../integrations/local-variables' ;
3536import { modulesIntegration } from '../integrations/modules' ;
@@ -71,6 +72,7 @@ export function getDefaultIntegrationsWithoutPerformance(): Integration[] {
7172 contextLinesIntegration ( ) ,
7273 localVariablesIntegration ( ) ,
7374 nodeContextIntegration ( ) ,
75+ fetchBreadcrumbsIntegration ( ) ,
7476 ...getCjsOnlyIntegrations ( ) ,
7577 ] ;
7678}
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ export {
8181 mysql2Integration ,
8282 mysqlIntegration ,
8383 nativeNodeFetchIntegration ,
84+ fetchBreadcrumbsIntegration ,
8485 nestIntegration ,
8586 NodeClient ,
8687 nodeContextIntegration ,
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ export {
7272 mysql2Integration ,
7373 mysqlIntegration ,
7474 nativeNodeFetchIntegration ,
75+ fetchBreadcrumbsIntegration ,
7576 nestIntegration ,
7677 NodeClient ,
7778 nodeContextIntegration ,
Original file line number Diff line number Diff line change @@ -74,6 +74,7 @@ export {
7474 mysql2Integration ,
7575 mysqlIntegration ,
7676 nativeNodeFetchIntegration ,
77+ fetchBreadcrumbsIntegration ,
7778 nestIntegration ,
7879 NodeClient ,
7980 nodeContextIntegration ,
You can’t perform that action at this time.
0 commit comments