Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Stop setting event.request in Browser SDKs #15845

Open
mydea opened this issue Mar 27, 2025 · 1 comment
Open

Stop setting event.request in Browser SDKs #15845

mydea opened this issue Mar 27, 2025 · 1 comment

Comments

@mydea
Copy link
Member

mydea commented Mar 27, 2025

Description

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 bother
      if (!WINDOW.navigator && !WINDOW.location && !WINDOW.document) {
        return;
      }

      // grab as much info as exists and add it to the event
      const url = event.request?.url || getLocationHref();
      const { referrer } = WINDOW.document || {};
      const { userAgent } = WINDOW.navigator || {};

      const headers = {
        ...event.request?.headers,
        ...(referrer && { Referer: referrer }),
        ...(userAgent && { 'User-Agent': userAgent }),
      };
      const request = {
        ...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.

@lforst
Copy link
Member

lforst commented Mar 28, 2025

Awful things:

  • Without the url in the request interface, the url tag in the event isn't prefilled. I have no idea what downstream stuff depends on this.
  • Without the user agent as a header, relay doesn't know what browser to attribute to (especially when tunneling)

I feel like we need a spec for a Page context and let relay pick these things up from there.

@lforst lforst removed their assignment Apr 2, 2025
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants