• English日本語한국어
  • Log inStart now

ignore (SPA API)

Syntax

newrelic.interaction().ignore()

Overrides other SPA save() calls; ignores an interaction so it is not saved or sent to New Relic.

Requirements

Description

This SPA method will cause an interaction to be ignored. It will not be saved or sent to New Relic. This method overrides any previous or subsequent calls to save().

Return values

This method returns the same API object created by interaction().

Examples

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.
});
Copyright © 2024 New Relic Inc.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.