Google 分析的客户过滤器:“Mozilla 兼容代理/iPhone”
在过去 10 天里,我们每天收到大约 800 次访问,谷歌报告为 “Mozilla 兼容代理/iPhone。”
经过一些阅读后,人们似乎认为这是人们使用快捷方式为您的网站添加书签的时候。不管是什么,它完全是无针对性的访问,导致我们的统计数据混乱。这些访问的跳出率为 98%,页面浏览量为 1.1。
我已将“坏”用户代理隔离如下:
**Bad:**
Mozilla/5.0+(iPhone;+U;+CPU+iPhone+OS+4_3_3+like+Mac+OS+X;+en-gb)+AppleWebKit/533.17.9+ (KHTML,+like+Gecko)+Mobile/8J2
**Good:**
Mozilla/5.0+(iPhone;+U;+CPU+iPhone+OS+4_3_1+like+Mac+OS+X;+en-us)+AppleWebKit/533.17.9+ (KHTML,+like+Gecko)+Version/5.0.2+Mobile/8G4+Safari/6533.18.5
请注意,坏用户代理从末尾缺少“Safari”。
我将如何创建一个过滤器来从我们的 Google Analytics(分析)中删除这些访问?
For the past 10 days we have been getting about 800 visit/day which Google reports as
"Mozilla Compatible Agent / iPhone."
After doing some reading people seem to suggest that this is when people bookmark your website using a shortcut. Whatever it is, its completely untargeted visits and is causing our stats to be messed up. Bounce rate is 98% and page views are 1.1 from these visits.
I have isolated the 'bad' user agents as follows:
**Bad:**
Mozilla/5.0+(iPhone;+U;+CPU+iPhone+OS+4_3_3+like+Mac+OS+X;+en-gb)+AppleWebKit/533.17.9+ (KHTML,+like+Gecko)+Mobile/8J2
**Good:**
Mozilla/5.0+(iPhone;+U;+CPU+iPhone+OS+4_3_1+like+Mac+OS+X;+en-us)+AppleWebKit/533.17.9+ (KHTML,+like+Gecko)+Version/5.0.2+Mobile/8G4+Safari/6533.18.5
Note that the bad is missing 'Safari' from the end.
How would I go about creating a filter to remove these visits from our Google Analytics?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您从分析中过滤掉这些访问是错误的 - 它们是真实的视图,您只是不确定它们的来源。
我认为您读到的关于人们为您的网站添加书签的帖子是这样的:
http://www.google.com /support/forum/p/Google%20Analytics/thread?tid=61e3d404f3c9c2bb&hl=en
书签的事情是一个转移注意力的事情 - 这是更可能的原因:
正如上面所说,大多数 iPhone 应用程序都包含使用 AppleWebKit 功能的浏览器 - 这是您在网站上看到的活动。
以下是一些可能的情况:
也许您可以使用活动跟踪代码来查看哪种媒体(以及最终哪个应用程序)正在推动流量?
更新:这是来自 Search Engine Land 的一篇文章,主题是移动应用程序中丢失的引用数据。
一些感兴趣的部分:
在 Google 搜索应用上:
最后:
再说一次,混乱的不是你的统计数据,而是你的测量结果。过滤掉您的移动访问者是一个坏主意。
You would be wrong to filter out those visits from your Analytics - they are real views, you're just not sure of their origin.
I think the post you read about people bookmarking your website is this one:
http://www.google.com/support/forum/p/Google%20Analytics/thread?tid=61e3d404f3c9c2bb&hl=en
The bookmarking thing is a red herring - this is the more likely reason:
Like it says above, most iPhone apps contain a browser that uses AppleWebKit capabilities - this is the activity you are seeing on your website.
Here are some likely scenarios:
Maybe you can use campaign tracking codes to see which medium (and ultimately which app) is driving the traffic?
UPDATE: here's an article from Search Engine Land on the topic of lost referrer data from mobile apps.
Some parts of interest:
On the Google Search app:
Finally:
Again, it's not your stats that are messed up, it's your measurement. Filtering out your mobile visitors is a bad idea.