我可以使用什么分析工具来准确跟踪用户的点击内容
请告知我可以使用什么工具来跟踪用户的确切点击,即点击流 - 查看每个访问者的实际点击流。
我遇到了“rail stat”,但它似乎已经过时了(09')。我还看到了“clicky”,但不确定是否可以看到点击流?
那么我还可以使用什么其他分析工具来查看点击流呢?
每个答案将不胜感激!
Please advise what tool can I use to track what user is exactly clicking i.e. click-streams – to view the actual click-stream of each visitor.
I came across "rail stat" but it seems outdated (09'). I also saw "clicky" but am unsure if I can see click streams with it?
So what other analytic tool can I use to view click streams?
Every answer would be greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试谷歌分析的“事件跟踪”部分,它允许您跟踪与您的网站的交互(点击等),而不仅仅是正常的每页。
以下是事件跟踪文档的摘录:
事件跟踪概述
事件跟踪是 ga.js 跟踪代码中提供的一种方法,可用于记录用户与网站元素(例如 Flash)的交互。驱动菜单系统。这是通过将方法调用附加到要跟踪的特定 UI 元素来完成的。当以这种方式使用时,此类元素上的所有用户活动都会被计算并在 Analytics 报告界面中显示为事件。此外,综合浏览量计算不受使用事件跟踪方法跟踪的用户活动的影响。最后,事件跟踪采用面向对象的模型,您可以使用该模型来收集和分类与网页对象的不同类型的交互。
相比之下,使用 urchin.js 跟踪代码跟踪网页对象需要创建虚拟 URL,并且不提供对象层次结构。使用旧版 urchin.js 代码,用户与页面对象的交互将被计算并显示为网站总页面浏览量的一部分,并且实际页面浏览量和虚拟页面浏览量之间没有区别。
使用 ga.js,您通常会将事件跟踪应用于:
数据加载时间
You could try the "event tracking" part of google analytics which allows you to track interactions with your site (clicks etc etc) rather than just the normal per-page.
Here is a snippet from the Event Tracking docs:
Event Tracking Overview
Event Tracking is a method available in the ga.js tracking code that you can use to record user interaction with website elements, such as a Flash-driven menu system. This is accomplished by attaching the method call to the particular UI element you want to track. When used this way, all user activity on such elements is calculated and displayed as Events in the Analytics reporting interface. Additionally, pageview calculations are unaffected by user activity tracked using the Event Tracking method. Finally, Event Tracking employs an object-oriented model that you can use to collect and classify different types of interaction with your web page objects.
By contrast, tracking web page objects using the urchin.js tracking code requires virtual URL creation and provides no object hierarchy. With the legacy urchin.js code, user interaction with page objects is calculated and displayed as part of total page views to your site, and no distinction is made between actual and virtual pageviews.
With ga.js, you would commonly apply Event Tracking to:
Load times for data
另一个选项是Open Web Analytics,其中包括一个选项,用于记录用户的 DOM 流以供以后播放以及记录热图。
OWA 是一个独立的 PHP 应用程序,能够监控多个域。它正在积极开发中,1.5 版随时都会发布。
华泰
Another option is Open Web Analytics, which includes an option to both record a user's DOM stream for later playback and to record a heat map.
OWA is a standalone PHP app that is able to monitor multiple domains. It is under active development with version 1.5 out any day now.
HTH