4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

New RelicをNext.js App Routerに導入する

Posted at

New Relicとは

いわゆる監視ツールになるのですが、
単なる監視ツールではなく、All-in-one observabilityを提供するプラットフォームになっています。
https://newrelic.com/jp

これまで、サーバーやWeb、インフラなど別々のツールで監視していたものを1つのプラットフォームで統合的かつトレーサブルに扱うことができ、俯瞰したモニタリングが可能になるツールです。

無料枠でも使える程度の機能を提供してくれていますので、1人で複数環境をモニタリングしなければいけない個人開発者の方などにはかなり嬉しいツールかと思います。
New Relic無料枠

今回の記事では、このNew RelicをNext.js App Routerに設定していく手順を簡潔に紹介して行きます。

導入手順

今回の手順では、サーバーサイドとクライアントサイド側の監視を設定していきます。

1. New Relicでアカウントを作成

1-1. 下記より、New Relicのアカウント作成を進めて行きます。

2. ライセンスキーの取得

2-1. 画面下のアカウントから、"API Keys"を選択します。

2-2. 遷移した先のAPI KeysからLicense Keyを探し、左のメニューボタンから"Copy Key"を選択して、キーを保存しておきます。

3. NPMインストール

3-1. newrelic@newrelic/nextをインストールします。

bun add newrelic @newrelic/next

(npm i, yarn add, pnpm add, etc...)

4. Next.jsへの適用 (サーバーサイド)

4-1. package.jsonのスクリプトでnewrelicを読み込ませます。

AsIs

{
  name: "New Relic DEMO",
  ...
  "scripts": {
    "dev": "dotenv -e ./.env -- next dev",
    "start": "next start",
    ...
  },
  ...
}

ToBe

{
  name: "New Relic DEMO",
  ...
  "scripts": {
    "dev": "NODE_OPTIONS='-r @newrelic/next' dotenv -e ./.env -- next dev",
    "start": "NODE_OPTIONS='-r @newrelic/next' next start",
    ...
  },
  ...
}

※僕のアプリでは諸事情により、dotenvを使っていますがdotenvは不要です。

4-3. next.config.jsに追加します。

next.config.jsを設定していないと下記の様なエラーでつまづくケースがあります。
https://forum.newrelic.com/s/hubtopic/aAXPh00000018gHOAQ/unable-to-integrate-the-newrelic-with-nextjs-14-application

const nrExternals = require('@newrelic/next/load-externals')

const nextConfig = {
  experimental: {
    // Without this setting, the Next.js compilation step will routinely
    // try to import files such as `LICENSE` from the `newrelic` module.
    // See https://nextjs.org/docs/app/api-reference/next-config-js/serverComponentsExternalPackages.
    serverComponentsExternalPackages: ['newrelic'],
  },
  webpack: (config) => {
    // In order for newrelic to effectively instrument a Next.js application,
    // the modules that newrelic supports should not be mangled by webpack. Thus,
    // we need to "externalize" all of the modules that newrelic supports.
    nrExternals(config)
    return config
  },
  ...,
}

module.exports = nextConfig

5. Next.jsへの適用 (クライアントサイド)

5-1. Layout.jsで下記の様に定義します。

import newrelic from 'newrelic'
import Script from 'next/script'

...

export default function RootLayout({ children }: { children: React.ReactNode }) {
  const browserTimingHeader = newrelic.getBrowserTimingHeader({
    hasToRemoveScriptWrapper: true,
  })
  return (
    <html lang="ja">
      ...
      <Script
        id='nr-browser-agent'
        strategy='beforeInteractive'
        dangerouslySetInnerHTML={{ __html: browserTimingHeader }}
      />
    </html>
  )
}

6. 実行!

6-1. ローカルで実行&アクセスして、実際にデータが送信されているかチェックします。

bun dev

(npm run dev, )

6-3. サーバーサイドのデータが送信されてるか確認

サーバーサイドのデータは、 AMP & Services から確認できます。

6-3. クライアントサイドのデータが送信されてるか確認

クライアントサイドのデータは、 Browser から確認できます。


以上です!
簡単に導入できるのに加え、設定なしでもかなりのメトリクスが見れていい感じでした!

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?