-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathhandler-monorepo.tmpl.js
56 lines (48 loc) · 1.57 KB
/
handler-monorepo.tmpl.js
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
import {
createRequestContext,
runWithRequestContext,
} from '{{cwd}}/.netlify/dist/run/handlers/request-context.cjs'
import { getTracer } from '{{cwd}}/.netlify/dist/run/handlers/tracer.cjs'
import tracing from '{{cwd}}/.netlify/dist/run/handlers/tracing.js'
process.chdir('{{cwd}}')
// Set feature flag for regional blobs
process.env.USE_REGIONAL_BLOBS = '{{useRegionalBlobs}}'
let cachedHandler
export default async function (req, context) {
if (process.env.NETLIFY_OTLP_TRACE_EXPORTER_URL) {
tracing.start()
}
const requestContext = createRequestContext(req, context)
const tracer = getTracer()
const handlerResponse = await runWithRequestContext(requestContext, () => {
return tracer.withActiveSpan('Next.js Server Handler', async (span) => {
span.setAttributes({
'account.id': context.account.id,
'deploy.id': context.deploy.id,
'request.id': context.requestId,
'site.id': context.site.id,
'http.method': req.method,
'http.target': req.url,
monorepo: true,
cwd: '{{cwd}}',
})
if (!cachedHandler) {
const { default: handler } = await import('{{nextServerHandler}}')
cachedHandler = handler
}
const response = await cachedHandler(req, context)
span.setAttributes({
'http.status_code': response.status,
})
return response
})
})
if (requestContext.serverTiming) {
handlerResponse.headers.set('server-timing', requestContext.serverTiming)
}
return handlerResponse
}
export const config = {
path: '/*',
preferStatic: true,
}