1

您将使用什么方法将 Google Analytics 中的跟踪信息与特定的命名用户相关联?

我希望能够进行自定义报告,并最终深入了解用户的使用情况。

编辑
我在想也许EventTracking API能够以某种方式提供帮助。

另外,请参阅此文档

4

4 回答 4

3

您可以将用户的用户名添加为跟踪/分段)变量...

pageTracker._setVar(username);

但是,每页只能使用一个 _setVar...

http://www.google.com/support/analytics/bin/answer.py?answer=57045

http://groups.google.com/group/analytics-help-basics/browse_thread/thread/07e29dc610050971

于 2009-02-25T07:07:43.450 回答
0

由于 Google Analytics 不知道登录到您网站的用户,因此您必须在您网站的软件本身内进行此类跟踪。如果那里还没有某种插件或扩展,您可能必须自己编写一个来跟踪您的用户在登录时所做的事情。

于 2009-02-25T05:47:18.387 回答
0

I think you want Google Analytics - Custom Variables. You can set five variables per page, and there is support for variables you set persisting over session and cookie (aka "visitor") lifetime. Take note of the rules for overwriting previous values based upon slot and scope; the documentation explains this with some examples. You should probably include something in a click-wrapped privacy policy about tracking individual users this way; it's somewhat invasive, depending on the purpose of your website.

_gaq.push(['_setCustomVar',
    1,          // Slot number: [1-5], inclusive.  Required.
    'Username', // Custom variable name.  Required.
    username,   // Custom variable value.  Required.
    2           // Scope: 
                // 1 = visitor/cookie-level, 2 = session-level, 3 = page-level.  
                // Optional, default=3.
]);
于 2012-11-15T18:26:15.747 回答
-1

http://www.highlyrelevant.com/2011/03/25/how-to-add-edit-google-analytics-users-to-your-account/

这篇文章对我和我的团队真的很有帮助。它不仅展示了如何添加用户,还告诉您如何编辑未正确设置的现有用户。

谢谢!菲尔

于 2011-03-25T21:58:31.177 回答