Getting Google Analytics to see a test server

2019-02-25 18:14发布

I have a conceptually simple problem involving Google Analytics and Tomcat, but I cannot solve it.

We have Google Analytics set up for our production machine and it is working fine. I want to set up a Google Analytics account to monitor our test system so I can test various features without affecting/polluting our production data. I have a test system set up, and a test Google Analytics account. However, the test Google Analytics account never receives data from the test system.

From my investigation, it appears that the problem is that my test system is being referred to as "localhost" instead of "test.mycompany.com" and the document.domain property used by Javascript is therefore "localhost" instead of the "test.mycompany.com" URL that it should be. This is causing the Google Analytics cookies to be written incorrectly (I think) and therefore the Google Analytics Javascript code is never sending data to my Google Analytics account.

Is there any way to set this "document.domain" property in Tomcat 6 so that this system will think it is "test.mycompany.com" instead of "localhost"?

I have examined both the Tomcat docs and the Google Analytics docs, but neither of them address this point directly.

Any help would be appreciated.

2条回答
Juvenile、少年°
2楼-- · 2019-02-25 18:29

Open your firewall on the test server so google can access it and use add this in the snipet

_gaq.push(['_setDomainName', 'none']); //has to be place before _trackPageview

also open your firewall for ga

https://ssl.google-analytics.com/__utm.gif
http://www.google-analytics.com/__utm.gif

and

http://www.google-analytics.com/ga.js

So, port 80 for HTTP, port 443 for HTTPS and the site(s):

ssl.google-analytics.com
www.google-analytics.com
查看更多
Root(大扎)
3楼-- · 2019-02-25 18:47

See stackoverflow.com/questions/9738815/google-analytics-gif-request-not-sent/9741228

Google Analytics doesn't send the tracking GIF for localhost, unless

_gaq.push(['_setDomainName', 'none']);

is added before the _trackPageview

查看更多
登录 后发表回答