forked from newrelic/newrelic-node-nextjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
21 lines (18 loc) · 1008 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* Copyright 2022 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
'use strict'
/**
* Allows users to `require('@newrelic/next')` directly in their app. If they
* for some reason choose to explicitly use an older version of our instrumentation
* then the supportability metrics for custom instrumentation will trigger.
*/
const newrelic = require('newrelic')
// TODO: Remove once we update agent instrumentation to not rely on full required path within Node.js
// When running Next.js app as a standalone server this is how the next-server is getting loaded
// See: https://github.com/vercel/next.js/blob/canary/packages/next/build/utils.ts#L1217
newrelic.instrumentWebframework('next/dist/server/next-server', require('./lib/next-server'))
newrelic.instrumentWebframework('./next-server', require('./lib/next-server'))
newrelic.instrumentWebframework('./render', require('./lib/render'))
newrelic.instrumentWebframework('./context', require('./lib/context'))