-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple RUM applications on the same domain #3113
Comments
Hello @bdox,
The main issue with having application by path is that the cookie we persist to track the session is isolated per domain not path. So you'll face some limitations. For instance, assuming: |
init config (same for both apps), both set to 100% sample rate.
We did observe that when navigating from one app to the next, if we manually delete the |
Hi @bdox , To mitigate an issue where some ad blockers were deleting the cookie every seconds, thus generating a large number of short sessions that customer were billed for, we are stopping the SDK if we detect something outside of the SDK is altering the cookie. If you were altering the cookie to work around our one-to-one relationship between the cookie and rum applications, this might not work anymore. This was implemented roughly 6 months ago.
Maybe you could try to use the |
We have multiple separate RUM applications on the same domain and have noticed recently that RUM data from apps that are not the initial load has been declining. The application on the base url seems to be unaffected, but subsequent application have seen a drop off in RUM data. I noticed there is a new section in the troubleshooting document which says
Is there a workaround for this with how our apps are currently set up? We need the data segregation due to the size of these apps, and currently using subdomains is not possible.
example
www.domaim.com - app 1
www.domain.com/site/2 - app 2 (seeing drop off in RUM sessions)
The text was updated successfully, but these errors were encountered: