Block tracking from particular domain
I don't want to track requests coming from the particular domain, I tried Exclude by IP and bot rules options but, still, it did not work out, any pointers on this will help us lot.
Thanks
Raj.
I don't want to track requests coming from the particular domain, I tried Exclude by IP and bot rules options but, still, it did not work out, any pointers on this will help us lot.
Thanks
Raj.
@raj_mandalapu - Assuming you have control over the implementation, you can do what @vidurb80577666 suggested and remove it entirely from pages on the offending domain. Another option might be to leverage s.abort as part of your doPlugins logic to stop analytics calls from firing only when/if it's the offending domain. For example:
s.doPlugins = function(s) {
if (document.location.hostname === "www.ignorethisdomain.com") {
s.abort = true; // stops the analytics call from firing
}
};More information about s.abort can be found here: https://docs.adobe.com/content/help/en/analytics/implementation/vars/config-vars/abort.html
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.