Hello,
Here is our use case :
- We want to track errors from the page load, so we do a first init and install() using a specific DSN
- Depending on the user browser / device, we then load different internal libraries and we want to track issues separately using specific DSNs.
Will it trigger some issues to do a second install() with another DSN ? If so, how can I manage to update the DSN ?
On a side-note I’m executing this code right after the install to capture all exceptions to Sentry :
window.onerror = function(messageOrEvent, source, lineno, colno, error) {
Raven.captureException(error);
};
Is it required or is this the default behaviour of Sentry ?
Thanks for your help