Alternative to google analytics that runs on ASP.NET and doesn't use IIS logs?

家住魔仙堡 提交于 2019-12-02 16:21:32

I recently wrote up a list of (mostly) free GA alternatives.

http://regulargeek.com/2010/05/29/25-free-google-analytics-alternatives/

Many of these are cloud-based, but there are some that are completely hosted as well. I cannot recommend a particular solution, but the most popular self-hosted packages look like Grape Web Statistics (http://www.quate.net/grape), Open Web Analytics (http://www.openwebanalytics.com/) and Piwik (http://piwik.org/).

You could use something that logged raw data to a database and then analyse this information.

Various alternatives to Google Analytics reviewed here:

http://sixrevisions.com/usabilityaccessibility/10-promising-free-web-analytics-tools/

Andy

You could add an http module to the asp.net pipeline and write off values to a sql database if you're in a do-it-yourself mood.

How much detail do you need? If don't need all the extensive features of these listed, I'd just write something myself.

for example, at the bottom of your master page, put something like:

<webapp:MyPageCounter ID="counter" runat="server" />

and then define the MyPageCounter usercontrol to log the page requested, IP address, and headers. then you'd have all the information to generate some reports from.

If you DO need more features, well, I think some shared hosting allow PHP apps. ;)

You could run the PHP analytics tool Piwik under Phalanger, a tool which executes PHP on the CLR

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!