如何在 Google Analytics 中报告访客的自定义事件

发布于 2024-09-28 18:31:32 字数 229 浏览 6 评论 0原文

我们在网络应用程序中使用自定义事件跟踪和 Google Analytics 来报告用户的行为(例如 - 用户点击关键操作、客户端错误、时间测量等) 每次在客户端上运行 Google Analytics 代码时,我们都会在访客会话中设置一个自定义变量来设置用户的实际用户名。 如何使用 Google Analytics(分析)报告访客所有自定义事件的表格? 我们的目标是能够为每个用户提供一个故事情节,应用程序产生的所有事件都与其用户名相关。

We use custom event tracking in our web application with Google Analytics to report user's behavior (for example - user clicks on key actions, client side errors, time measurements, etc.)
Each time the Google Analytics code is run on the client, we set a custom variable at the Visitor session to set the actual username of the user.
How do you use Google Analytics to report a table of all the custom events by visitor?
Our goal is to be able to have a storyline for each user, with all the events produced by the application correlated to its username.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我喜欢麦丽素 2024-10-05 18:31:32

Google Analytics(分析)中没有标准的报告视图可以默认为您提供完整的视图。

执行此操作的最佳方法是使用自定义报告:创建一个平面表格自定义报告,其中将自定义变量值作为维度,并将您感兴趣的自定义事件维度作为另一个维度。然后,设置您想要的指标(大概是总的或唯一的事件点击数),并设置过滤器以过滤到您想要查看的特定事件类别或操作。

下面我有一个关于如何提取此内容的 API 建议(来自此答案的先前版本),但创建自定义报告大致相同。


根据您的具体需求,API 调用的结构如下:

指标:ga:totalEvents

维度:ga:customVarValue1,ga:eventCategory,ga:eventAction,ga: eventLabel

过滤器:gaEventCategory==Foo

There are no standard reporting views in Google Analytics that will give you this full view by default.

The best way to do this is with Custom Reports: Create a flat table custom report that has the custom variable value as a dimension, and the custom event dimension you're interested as another dimension. Then, set the metrics you want (total or unique event hits, presumably), and set the filter to filter down to the specific event category or action you want to view against.

Below I have an API recommendations (from a previous version of this answer) for how to pull this, but it would be roughly the same for creating a custom report.


Depending on your exact needs, the API call would be structured something like:

Metrics: ga:totalEvents

Dimensions: ga:customVarValue1,ga:eventCategory,ga:eventAction,ga:eventLabel

Filters: gaEventCategory==Foo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文