Bugsnag

Manual integration

Smartlook can be easily integrated into Bugsnag using OnErrorCallback:

Bugsnag.start({onError: function (event) {
        Smartlook.getDashboardSessionUrl({withCurrentTimestamp: true},
        function (dashboardSessionUrl) {
            event.addMetadata('Smartlook', {"Dashboard session URL": dashboardSessionUrl});
        });
    }
});

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