是否有任何分析工具可以在gae上应用服务器端?

时间:2022-11-27 15:17:20

I have an app running on GAE which has no webpages(actually, a 302 redirection is performed), so i can only do the analytic on server side.

我有一个在GAE上运行的应用程序没有网页(实际上,执行了302重定向),所以我只能在服务器端进行分析。

So I wonder if there's some tools can handle the request and do the analytics.

所以我想知道是否有一些工具可以处理请求并进行分析。

And I see that most url-shorten services can do the analytic(like goo.gl), were they doing this on server side? i see they're also doing server side redirections(http 301)

我发现大多数url缩短的服务都可以进行分析(比如goo.gl),他们是在服务器端做的吗?我看到他们也在做服务器端重定向(http 301)

by the way, i use python, if that effects

顺便说一句,我使用python,如果那样的影响

1 个解决方案

#1


0  

It depends on what you want to analyse, and how you want to display the data. Is it number of hits, load, latency?

这取决于您要分析的内容以及您希望如何显示数据。是命中数,负载数,延迟数?

One easy to implement option, which will probably handle some of your requirements, is http://www.prodeagle.com. It does all the graphing for you. All you need to do is provide the data for your counters on their system and it does the rest. If you need country and city analytics, you could probably create some counters that use city and country from the request header. Take a look at their site and see if it suits your needs.

一个易于实现的选项,可能会满足您的一些要求,是http://www.prodeagle.com。它为您完成所有图形。您需要做的就是在系统上为您的计数器提供数据,剩下的工作就完成了。如果您需要国家和城市分析,您可以创建一些使用请求标头中的城市和国家/地区的计数器。看看他们的网站,看看它是否符合您的需求。

#1


0  

It depends on what you want to analyse, and how you want to display the data. Is it number of hits, load, latency?

这取决于您要分析的内容以及您希望如何显示数据。是命中数,负载数,延迟数?

One easy to implement option, which will probably handle some of your requirements, is http://www.prodeagle.com. It does all the graphing for you. All you need to do is provide the data for your counters on their system and it does the rest. If you need country and city analytics, you could probably create some counters that use city and country from the request header. Take a look at their site and see if it suits your needs.

一个易于实现的选项,可能会满足您的一些要求,是http://www.prodeagle.com。它为您完成所有图形。您需要做的就是在系统上为您的计数器提供数据,剩下的工作就完成了。如果您需要国家和城市分析,您可以创建一些使用请求标头中的城市和国家/地区的计数器。看看他们的网站,看看它是否符合您的需求。