title | type | shortDescription | tags | metaDescription | redirects | freshnessValidatedDate | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
setErrorHandler |
apiDoc |
Allows selective ignoring and grouping of known errors that the browser agent captures. |
|
Browser monitoring API call to allow selective ignoring and grouping of known errors captured by the agent. |
|
never |
newrelic.setErrorHandler(function $callback)
Allows selective ignoring and grouping of known errors that the browser agent captures.
-
Browser Pro or Pro+SPA agent (v974 or higher)
- For error grouping capability, v1.230.0 or higher is required.
-
If you're using npm to install the browser agent, you must enable the
jserrors
feature when instantiating theBrowserAgent
class. In thefeatures
array, add the following:import { JSErrors } from '@newrelic/browser-agent/features/jserrors'; const options = { info: { ... }, loader_config: { ... }, init: { ... }, features: [ JSErrors ] }
For more information, see the npm browser installation documentation.
The newrelic.setErrorHandler()
API call allows you to selectively ignore known errors that the browser agent captures. It takes a single error handler function, which will be called for each error that the browser agent captures. If the handler returns true
, New Relic does not record the error. Otherwise the error will be processed normally.
In addition, later versions of the agent support fingerprinting or grouping of exceptions with a custom provided label. To do this, return an object instead of a boolean with a group
property set to the desired string. It's important to know that providing an empty string, or any object that does not conform to this exact spec, is treated the same as the true
case, for which the error will be ignored. This behavior is backwards compatible with prior versions.
<th>
Description
</th>
</tr>
Parameter |
---|
`$callback`
|
Include the error object inside of the callback function to ignore specific errors that the browser agent captures.
newrelic.setErrorHandler(function(err) {
if (shouldIgnoreError(err)) {
return true;
} else {
return false;
}
});
Assign custom labels to specific errors for view in the Errors Inbox UI.
newrelic.setErrorHandler(function(err) {
if (isReferenceError(err)) {
return { group: 'My reference errors' }; // error is included and tagged under this label
} else if (isSomeSpecificError(err)) {
return { group: '' }; // error will be excluded!
// return { Group: 'still excluded - prop name has capital G!' };
} else {
return false; // error is included without any label
}
})