You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today, we set data about the current page on event.request in the Browser SDK. This is done by the HttpContext integration:
// if none of the information we want exists, don't botherif(!WINDOW.navigator&&!WINDOW.location&&!WINDOW.document){return;}// grab as much info as exists and add it to the eventconsturl=event.request?.url||getLocationHref();const{ referrer }=WINDOW.document||{};const{ userAgent }=WINDOW.navigator||{};constheaders={
...event.request?.headers,
...(referrer&&{Referer: referrer}),
...(userAgent&&{'User-Agent': userAgent}),};constrequest={
...event.request,
...(url&&{ url }),
headers,};event.request=request;
In product, we show this as "HTTP Request Information" which is pretty confusing. We should stop setting this for browser SDKs, and instead set this information in a different place (e.g. in a page context, TBD).
We can then think about instead using this place to store outgoing-request information for failed fetch calls.
The text was updated successfully, but these errors were encountered:
Description
Today, we set data about the current page on
event.request
in the Browser SDK. This is done by the HttpContext integration:In product, we show this as "HTTP Request Information" which is pretty confusing. We should stop setting this for browser SDKs, and instead set this information in a different place (e.g. in a
page
context, TBD).We can then think about instead using this place to store outgoing-request information for failed fetch calls.
The text was updated successfully, but these errors were encountered: