按事件识别现有客户(Identify existing clients by event)

我有兴趣了解有多少访问者访问我的网站但他们不是客户。

目前,识别访问该网站的某人是否是现有客户端的唯一方法是,如果他们登录,则会将他们带到另一个未启用Google Analytics的区域。

我在使用以下代码登录时已经跟踪了该事件

_gaq.push(['_trackEvent', 'Membership', 'Login', $('#UserName').val()]);

我是否可以在不触发此事件的情况下查看浏览网站的访问者数量?

I'm interested in working out how many visitors are going to my site who aren't already clients.

Currently the only way to identify whether someone visiting the site is an existing client is if they log in, which takes them to another area which doesn't have google analytics enabled.

I'm tracking the event already when they login with the following code

_gaq.push(['_trackEvent', 'Membership', 'Login', $('#UserName').val()]);

Can I find out the number of visitors who browse the site without triggering this event?

最满意答案

我已经解决了。

在谷歌分析中,您可以添加自定义高级细分,在上述情况下,其“事件类别”=“成员资格”和“事件操作”=“登录”。 从那里,您可以勾选“所有访问”和自定义细分以进行比较。

听众

I think I've worked it out.

In google analytics you can add a custom advanced segment, in the above case its 'Event Category' = 'Membership' and 'Event Action' = 'Login'. From there you can tick 'All Visits' and the custom segment to get a comparison.

Audience

更多推荐