Bugsnag

Manual integration

Smartlook can be easily integrated into Bugsnag using OnErrorCallback:

Bugsnag.start({onError: function (event) {
        Smartlook.instance.eventListeners.registerSessionChangedListener(
        	function (sessionUrl) {
            event.addMetadata('Smartlook', {"Dashboard session URL": sessionUrl});
        });
    }
});

Full Bugsnag documentation with examples can be found on the official website.