Google Analytics(分析)会话级自定义变量未显示所有访问次数

时间:2011-07-28 19:28:27

标签: session variables google-analytics

我无法通过GA自定义变量跟踪信息。我在同一类页面中使用页面级和会话级自定义变量,两者都在不同的插槽中。正如我从文档中理解的那样,因为我在不同的插槽中进行操作,所以应该没有任何问题,但是我的会话级自定义变量显示的访问次数比添加页面级别之前少得多。这是我的代码:

<script type="text/javascript"> 

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2531061-1']);



_gaq.push(['_setCustomVar',
           2,           // Slot
           'Profile Type',          // Variable name
           'With Stream - External Player',             // Variable value
           2                // Scope.
]);




_gaq.push(['_setCustomVar',
           1,           // Slot
           'Test - Improve Bounce Rate',            // Variable name
           'Control',               // Variable value
           3                // Scope.
]);

_gaq.push(['_trackPageview']);
_gaq.push(['_trackPageLoadTime']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = 'http://www.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script> 

任何可能出错的线索?

谢谢!

JC

0 个答案:

没有答案