Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathindex.ts
More file actions
Latest commit
296 lines (250 loc) · 12.2 KB
/
Copy pathindex.ts
File metadata and controls
296 lines (250 loc) · 12.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
// import/export got a false positive, and affects most of our index barrel files
// can be removed once following issue is fixed: https://github.com/import-js/eslint-plugin-import/issues/703
/* eslint-disable import/export */
import{HTTP_TARGET,URL_QUERY}from'@sentry/conventions/attributes';
importtype{EventProcessor}from'@sentry/core';
import{applySdkMetadata,debug,getClient,getGlobalScope,getRootSpan,GLOBAL_OBJ}from'@sentry/core';
importtype{NodeClient,NodeOptions}from'@sentry/node';
import{getDefaultIntegrations,httpIntegration,initasnodeInit}from'@sentry/node';
import{DEBUG_BUILD}from'../common/debug-build';
import{devErrorSymbolicationEventProcessor}from'../common/devErrorSymbolicationEventProcessor';
import{getVercelEnv}from'../common/getVercelEnv';
import{isPrerenderControlFlowError}from'../common/nextNavigationErrorUtils';
import{TRANSACTION_ATTR_SHOULD_DROP_TRANSACTION}from'../common/span-attributes-with-logic-attached';
import{isBuild}from'../common/utils/isBuild';
import{isCloudflareWaitUntilAvailable}from'../common/utils/responseEnd';
import{setUrlProcessingMetadata}from'../common/utils/setUrlProcessingMetadata';
import{distDirRewriteFramesIntegration}from'./distDirRewriteFramesIntegration';
import{enhanceMiddlewareRootSpan}from'../common/enhanceMiddlewareRootSpan';
import{backfillHttpServerStatus}from'../common/utils/backfillHttpServerStatus';
import{createLiveRootSpanAdapter}from'../common/utils/liveRootSpanAdapter';
import{enhanceHandleRequestRootSpan}from'./enhanceHandleRequestRootSpan';
import{handleOnSpanStart}from'./handleOnSpanStart';
import{prepareSafeIdGeneratorContext}from'./prepareSafeIdGeneratorContext';
import{maybeCompleteCronCheckIn}from'./vercelCronsMonitoring';
import{maybeCleanupQueueSpan}from'./vercelQueuesMonitoring';
export*from'@sentry/node';
// Explicitly re-export so these are statically detectable by turbopack
export{pinoIntegration,vercelAIIntegration}from'@sentry/node';
export{captureUnderscoreErrorException}from'../common/pages-router-instrumentation/_error';
// Override core span methods with Next.js-specific implementations that support Cache Components
export{startSpan,startSpanManual,startInactiveSpan}from'../common/utils/nextSpan';
constglobalWithInjectedValues=GLOBAL_OBJastypeofGLOBAL_OBJ&{
_sentryRewriteFramesDistDir?: string;
_sentryRelease?: string;
};
// Call at module level so `next build` prerender workers still register the runner without `init`
prepareSafeIdGeneratorContext();
/**
* A passthrough error boundary for the server that doesn't depend on any react. Error boundaries don't catch SSR errors
* so they should simply be a passthrough.
*/
exportconstErrorBoundary=(props: React.PropsWithChildren<unknown>): React.ReactNode=>{
if(!props.children){
returnnull;
}
if(typeofprops.children==='function'){
return(props.childrenas()=>React.ReactNode)();
}
// since Next.js >= 10 requires React ^16.6.0 we are allowed to return children like this here
returnprops.childrenasReact.ReactNode;
};
/**
* A passthrough redux enhancer for the server that doesn't depend on anything from the `@sentry/react` package.
*/
exportfunctioncreateReduxEnhancer(){
return(createStore: unknown)=>createStore;
}
/**
* A passthrough error boundary wrapper for the server that doesn't depend on any react. Error boundaries don't catch
* SSR errors so they should simply be a passthrough.
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
exportfunctionwithErrorBoundary<PextendsRecord<string,any>>(
WrappedComponent: React.ComponentType<P>,
): React.FC<P>{
returnWrappedComponentasReact.FC<P>;
}
/**
* Just a passthrough since we're on the server and showing the report dialog on the server doesn't make any sense.
*/
exportfunctionshowReportDialog(): void{
return;
}
/**
* Returns the runtime configuration for the SDK based on the environment.
* When running on OpenNext/Cloudflare, returns cloudflare runtime config.
*/
functiongetCloudflareRuntimeConfig(): {runtime: {name: string}}|undefined{
if(isCloudflareWaitUntilAvailable()){
// todo: add version information?
return{runtime: {name: 'cloudflare'}};
}
returnundefined;
}
/** Inits the Sentry NextJS SDK on node. */
// eslint-disable-next-line complexity
exportfunctioninit(options: NodeOptions): NodeClient|undefined{
prepareSafeIdGeneratorContext();
if(isBuild()){
return;
}
if(!DEBUG_BUILD&&options.debug){
// eslint-disable-next-line no-console
console.warn(
'[@sentry/nextjs] You have enabled `debug: true`, but Sentry debug logging was removed from your bundle (likely via `webpack.treeshake.removeDebugLogging: true`). Set that option to `false` to see Sentry debug output.',
);
}
constcustomDefaultIntegrations=getDefaultIntegrations(options)
.filter(integration=>integration.name!=='Http')
.concat(
// We are using the HTTP integration without instrumenting incoming HTTP requests because Next.js does that by itself.
httpIntegration({
disableIncomingRequestSpans: true,
}),
);
// Turn off Next.js' own fetch instrumentation (only when we manage OTEL)
// https://github.com/lforst/nextjs-fork/blob/1994fd186defda77ad971c36dc3163db263c993f/packages/next/src/server/lib/patch-fetch.ts#L245
// Enable with custom OTel setup: https://github.com/getsentry/sentry-javascript/issues/17581
if(options.enableOpenTelemetrySetup??true){
process.env.NEXT_OTEL_FETCH_DISABLED='1';
}
// This value is injected at build time, based on the output directory specified in the build config. Though a default
// is set there, we set it here as well, just in case something has gone wrong with the injection.
constdistDirName=process.env._sentryRewriteFramesDistDir||globalWithInjectedValues._sentryRewriteFramesDistDir;
if(distDirName){
customDefaultIntegrations.push(distDirRewriteFramesIntegration({ distDirName }));
}
// Detect if running on OpenNext/Cloudflare and get runtime config
constcloudflareConfig=getCloudflareRuntimeConfig();
constopts: NodeOptions={
environment: options.environment||process.env.SENTRY_ENVIRONMENT||getVercelEnv(false)||process.env.NODE_ENV,
release: process.env._sentryRelease||globalWithInjectedValues._sentryRelease,
defaultIntegrations: customDefaultIntegrations,
// Next.js emits its own OpenTelemetry spans, so it defaults to registering the Sentry tracer
// provider (unlike most Node-based SDKs). A user-provided value still overrides this via `...options`.
enableOpenTelemetrySetup: true,
...options,
// Override runtime to 'cloudflare' when running on OpenNext/Cloudflare
...cloudflareConfig,
};
constnextjsIgnoreSpans: NonNullable<NodeOptions['ignoreSpans']>=[
// Static assets (matches `_next/static` anywhere in the name to handle custom basePath)
/^GET(\/.*)?\/_next\/static\//,
// Dev source-map fetch endpoints
/\/__nextjs_original-stack-frame/,
// Pages router /404
/^\/404$/,
// App router /404 and /_not-found segments (any HTTP method)
/^(GET|HEAD|POST|PUT|DELETE|CONNECT|OPTIONS|TRACE|PATCH)\/(404|_not-found)$/,
// Root transactions named "NextServer.getRequestHandler" containing useless tracing
/^NextServer\.getRequestHandler$/,
// Spans flagged via TRANSACTION_ATTR_SHOULD_DROP_TRANSACTION
// (set in `dropMiddlewareTunnelRequests` during `spanStart`)
{attributes: {[TRANSACTION_ATTR_SHOULD_DROP_TRANSACTION]: true}},
];
opts.ignoreSpans=[...(opts.ignoreSpans||[]), ...nextjsIgnoreSpans];
if(DEBUG_BUILD&&opts.debug){
debug.enable();
}
DEBUG_BUILD&&debug.log('Initializing SDK...');
if(sdkAlreadyInitialized()){
DEBUG_BUILD&&debug.log('SDK already initialized');
return;
}
// Use appropriate SDK metadata based on the runtime environment
applySdkMetadata(opts,'nextjs',['nextjs',cloudflareConfig ? 'cloudflare' : 'node']);
constclient=nodeInit(opts);
client?.on('beforeSampling',({ spanAttributes },samplingDecision)=>{
// There are situations where the Next.js Node.js server forwards requests for the Edge Runtime server (e.g. in
// middleware) and this causes spans for Sentry ingest requests to be created. These are not exempt from our tracing
// because we didn't get the chance to do `suppressTracing`, since this happens outside of userland.
// We need to drop these spans.
if(
// eslint-disable-next-line typescript/no-deprecated
(typeofspanAttributes[HTTP_TARGET]==='string'&&
// eslint-disable-next-line typescript/no-deprecated
spanAttributes[HTTP_TARGET].includes('sentry_key')&&
// eslint-disable-next-line typescript/no-deprecated
spanAttributes[HTTP_TARGET].includes('sentry_client'))||
(typeofspanAttributes[URL_QUERY]==='string'&&
spanAttributes[URL_QUERY].includes('sentry_key')&&
spanAttributes[URL_QUERY].includes('sentry_client'))
){
samplingDecision.decision=false;
}
});
client?.on('spanStart',span=>handleOnSpanStart(span,client));
// Normalize name/op/source/status on the request root span at span end, before it is serialized into
// a transaction event (legacy) or streamed span JSON. Running on the live span means both lifecycles
// pick up the changes from one place, and the cron/queue hooks below see the finalized status.
client?.on('spanEnd',span=>{
if(span!==getRootSpan(span)){
return;
}
constmutableRootSpan=createLiveRootSpanAdapter(span);
enhanceHandleRequestRootSpan(mutableRootSpan);
enhanceMiddlewareRootSpan(mutableRootSpan);
backfillHttpServerStatus(span);
});
client?.on('spanEnd',maybeCompleteCronCheckIn);
client?.on('spanEnd',maybeCleanupQueueSpan);
getGlobalScope().addEventProcessor(
Object.assign(
((event,hint)=>{
if(event.type!==undefined){
returnevent;
}
constoriginalException=hint.originalException;
constisPostponeError=
typeoforiginalException==='object'&&
originalException!==null&&
'$$typeof'inoriginalException&&
originalException.$$typeof===Symbol.for('react.postpone');
if(isPostponeError){
// Postpone errors are used for partial-pre-rendering (PPR)
returnnull;
}
if(isPrerenderControlFlowError(originalException)){
// Next.js aborts prerenders by rejecting the promises it handed out (e.g. `fetch()` under Cache
// Components) and throws to bail out of static rendering. These never reach the user, so drop them
// here as well - the wrappers cannot cover every path they escape through.
returnnull;
}
// We don't want to capture suspense errors as they are simply used by React/Next.js for control flow
constexceptionMessage=event.exception?.values?.[0]?.value;
if(
exceptionMessage?.includes('Suspense Exception: This is not a real error!')||
exceptionMessage?.includes('Suspense Exception: This is not a real error, and should not leak')
){
returnnull;
}
returnevent;
})satisfiesEventProcessor,
{id: 'DropReactControlFlowErrors'},
),
);
client?.on('preprocessEvent',event=>{
setUrlProcessingMetadata(event);
});
if(process.env.NODE_ENV==='development'){
getGlobalScope().addEventProcessor(devErrorSymbolicationEventProcessor);
}
try{
// @ts-expect-error `process.turbopack` is a magic string that will be replaced by Next.js
if(process.turbopack){
getGlobalScope().setTag('turbopack',true);
getGlobalScope().setAttribute('turbopack',true);
}
}catch{
// Noop
// The statement above can throw because process is not defined on the client
}
DEBUG_BUILD&&debug.log('SDK successfully initialized');
returnclient;
}
functionsdkAlreadyInitialized(): boolean{
return!!getClient();
}
export*from'../common';
export{wrapApiHandlerWithSentry}from'../common/pages-router-instrumentation/wrapApiHandlerWithSentry';