SolarWinds
Integrating LogRocket with SolarWinds
For backends with a SolarWinds collectors installed
Add the LogRocket session URL in a header to your API calls to backends which have SolarWinds set up. The LogRocket session link will appears in traces that show headers.
var recordingURL;
LogRocket.getSessionURL(function(sessionURL) {
recordingURL = sessionURL;
});
// example API call
fetch(someAPICallhere, {
headers: {
// other headers
'X-LogRocket-URL': recordingURL,
},
});
Updated over 4 years ago