Custom Error Addition¶
After initializing RUM, you can use the addError('<NAME>', '<JSON_OBJECT>') API to add custom Error metric data beyond the standard collection.
Adding an Error¶
// Send a custom error with context
const error = new Error('Something wrong occurred.');
window.DATAFLUX_RUM && DATAFLUX_RUM.addError(error, {
pageStatus: 'beta',
});
// Send a network error
fetch('<SOME_URL>').catch(function(error) {
window.DATAFLUX_RUM && DATAFLUX_RUM.addError(error);
})
// Send a handled exception error
try {
//Some code logic
} catch (error) {
window.DATAFLUX_RUM && DATAFLUX_RUM.addError(error);
}
// Send a custom error with context
const error = new Error('Something wrong occurred.');
DATAFLUX_RUM.onReady(function() {
DATAFLUX_RUM.addError(error, {
pageStatus: 'beta',
});
});
// Send a network error
fetch('<SOME_URL>').catch(function(error) {
DATAFLUX_RUM.onReady(function() {
DATAFLUX_RUM.addError(error);
});
})
// Send a handled exception error
try {
//Some code logic
} catch (error) {
DATAFLUX_RUM.onReady(function() {
DATAFLUX_RUM.addError(error);
})
}
import { datafluxRum } from '@cloudcare/browser-rum'
// Send a custom error with context
const error = new Error('Something wrong occurred.');
datafluxRum.addError(error, {
pageStatus: 'beta',
});
// Send a network error
fetch('<SOME_URL>').catch(function(error) {
datafluxRum.addError(error);
})
// Send a handled exception error
try {
//Some code logic
} catch (error) {
datafluxRum.addError(error);
}