How to Filter Out (Not Set) Hostname in Google Analytics

If you are like me, you probably see unnatural traffic all of the time sneaking into your Google Analytics data. It is a constant battle, and you sometimes feel like you will never get the clean data you deserve.

Not all bot traffic is created equal though, and the measures necessary to remove this data from your Google Analytics moving forward is not always straightforward. Recently we were reminded of some influx of bot traffic to some of our sites we manage coming in with a hostname of (Not Set).

Unfortunately, in these cases, we were not able to filter out these sessions by simply setting up a hostname filter. For whatever reason, Google looks at a null value as nothing more than that and will not use the filter for hostname as a result. Setting a filter to only allow traffic from a specific domain did keep out bad traffic from spoofed domains, but the traffic from Hostname = (not set) was still present.

What we needed to figure out was a way to filter sessions that had values of null for the hostname without an include only filter.

Filtering Out (not set) hostname traffic in Google Analytics – The Solution

After some research, we found a way to set a variable using Google Analytics filters that can be used in other filters. The idea is, that we read in the hostname value and save it to a dynamic variable using filters. In a separate filter, we access that value and check it against the real hostname. In this case, the variable is set to nothing and not null, so the filter check against this new hostname variable works as opposed to when the value is null.

In order to set this up, you will need to create two filters. The first setting the value of the hostname to a custom variable, and the second filtering out non-hostname matches.

Creating a Hostname Identifier Field

  1.  Create a new filter in Google Analytics. Name it “Create Hostname Identifier Field” or something similar.
  2.  Choose “Custom” Filter Type.
  3.  Select “Advanced” as the filter type option.
  4.  In Field A → Extract A choose “Hostname” as the option, and put “(.*)” as the value for the field.
  5.  Leave Field B → Extract B blank.
  6.  In Output To → Constructor choose “Custom Field 1” as the option, and put “$A1” as the value for the field.
  7.  Make sure “Field A Required” is checked as well as “Override Output Field” is checked. The other two options can be left unchecked.
  8.  Save Your Filter. We will use the value saved in “Custom Field 1” as our check against the real hostname.

Creating the Valid Hostname Filter

  1.  Create a new filter in Google Analytics. Name it “Valid Hostname Filter” or something similar.
  2.  Choose “Custom” Filter Type.
  3.  Select “Include” as the filter type option.
  4.  Under “Filter Field” select “Custom Field 1” as the option.
  5.  In the “Filter Pattern” field you want to input a regex confirmation of the hostname or hostnames used for this profile.
  6.  The most basic filter pattern would be “websiteaddress\.com”. Make sure to include the “\” character to make sure the “.” is escaped properly.
  7.  Save Your Filter. This will serve as your new hostname filter check.

After this is all set up, you will no longer see traffic with the Hostname set as (not set) or being null. You should only see traffic that was originated on your domain (hostname).

See how Hall can help increase your demand.