-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathhandler.tmpl.js
49 lines (43 loc) · 1.45 KB
/
handler.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
import {
createRequestContext,
runWithRequestContext,
} from './.netlify/dist/run/handlers/request-context.cjs'
import serverHandler from './.netlify/dist/run/handlers/server.js'
import { getTracer } from './.netlify/dist/run/handlers/tracer.cjs'
import tracing from './.netlify/dist/run/handlers/tracing.js'
// Set feature flag for regional blobs
process.env.USE_REGIONAL_BLOBS = '{{useRegionalBlobs}}'
export default async function handler(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: false,
cwd: process.cwd(),
})
const response = await serverHandler(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,
}