構文
newrelic.interaction().ignore()
他の SPA save()
呼び出しをオーバーライドします。インタラクションを無視するため、New Relic に保存または送信されません。
要件
ブラウザ Pro+SPA エージェント (v963 以降)
npm を使用してブラウザ エージェントをインストールしている場合は、
BrowserAgent
クラスをインスタンス化するときにspa
機能を有効にする必要があります。features
配列に以下を追加します。import { Spa } from '@newrelic/browser-agent/features/spa';const options = {info: { ... },loader_config: { ... },init: { ... },features: [Spa]}詳細については、 npm ブラウザのインストールに関するドキュメントを参照してください。
説明
この SPA メソッドにより、対話が無視されます。保存されたり、New Relic に送信されたりすることはありません。このメソッドは、以前または後続のsave()
への呼び出しをオーバーライドします。
戻り値
このメソッドは、 interaction()
によって作成されたものと同じAPIオブジェクトを返します。
例
router.addRoute('/uninteresting-route', () => { newrelic.interaction() // Get handle to current interaction. .ignore(); // Ignore this interaction to ensure it will not be saved. renderUninterestingRoute(); // Render route.});