How exclude IP Address from Adobe Data Collection (former Adobe Launch) | Community
Skip to main content
aleber
Level 2
March 30, 2023
Solved

How exclude IP Address from Adobe Data Collection (former Adobe Launch)

  • March 30, 2023
  • 2 replies
  • 2639 views

Hi All,

I have an Adobe Analytics implementation and I wan to avoid to pay server calls for traffic generated from BOTs.

Reading documentation I see that exclude an IP by Analytics > Admin > All admin > Exclude by IP, filter IPs from reports but the hit is billed.

 

Is there any way to get and filter IP from Adobe Data Collection (former Adobe Launch) before the hit is sent to Adobe Analytics?

 

Thanks in advance!

 

Regards,

Alessandro

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by VaniBhemarasetty

@aleber Unfortunately, we cannot directly. Unless you can write a custom code in Launch to not fire the rule in those scenarios.

2 replies

VaniBhemarasetty
Adobe Employee
VaniBhemarasettyAdobe EmployeeAccepted solution
Adobe Employee
March 30, 2023

@aleber Unfortunately, we cannot directly. Unless you can write a custom code in Launch to not fire the rule in those scenarios.

aleber
aleberAuthor
Level 2
March 30, 2023

How can I get the IP from Launch? is there any variable containing it?

Level 2
March 30, 2023

Hi @aleber   Great question & unfortunately there isn't a easy way. 

If you have the list of BOT IP's try writing below custom code (doPlugins) and test. 

s.doPlugins = function(s) {
var ips = ['192.168.1.1', '10.0.0.2', '172.16.0.3']; // Add bot IP addresses to the array

// If there are any IP addresses in the array, abort
if (ips.length > 0) {
s.abort = true;
}
};
Doplugins is a function that you'd typically have in your Adobe Analytics extension.  It is the last thing that happens before a beacon is sent, so it kicks in after the analytics extension settings, and after any rules with adobe analytics actions.
By native only Datawarehouse feature in AA can provide IP details. 

aleber
aleberAuthor
Level 2
April 3, 2023

Hi,

my problem is: how get Visitor IP Address on Launch in order to match with list of BOT IP Addresses?

Is there any extension or method that allow to me to get Visitor IP Address from Data Collection?

 

Regards,

Alessandro