Important
To use this API, you need the Browser Pro+SPA edition of the browser agent.
Syntax
newrelic.interaction().ignore()
Overrides other SPA save()
calls; ignores an interaction so it is not saved or sent to New Relic.
Requirements
Agent version nr-963 or higher.
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.});