开发者

Good open source analytics/stats software in PHP? [closed]

开发者 https://www.devze.com 2022-12-21 19:39 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.

Closed 7 years ago.

Improve this question

The url shortening service I'm building needs to display some basic click stats to users: # of clicks, conversions, referring domains, and country (filterable by a date range). I'll possibly want more advanced stats in the future.

Is there existing open source software that will allow me to pass events to it and then easily display a bar or line graph of that event (for example, a line graph of "conversions" between two spe开发者_如何学运维cified dates). It seems like something like this should exist and would be much easier then building the whole thing from scratch.

I know there are graphing scripts, but that still requires me to format the data (usually as an xml file) and then pass it to the graph. I'm looking for something a bit more complete, which I can just feed the events and then it does everything else.


There are a large number of packages that do what you want. The most popular ones are:

  • Cobub Razor (Redis supported for high performance)
  • Piwik
  • Open Web Analytics
  • TraceWatch

They all require a database connection (mostly MySQL) to collect and store the data, which can be a performance problem when your service becomes popular.

One of the simpler packages that is file-based is

  • BBClone

The features of file-based solutions are generally more limited.


Every kind of software I can image will need you to generate the data you want to plot.

At this point, you have two possibilities:

  • Use a third party solution for your stats (such as Google Analytics)
  • Use a library to show your data graphically

The first solution will be easy to use, but it won't be flexible. The second one will be a bit harder (not too much), but you'll decide what to plot and how.

I've recently started an open source project to make the highcharts plotting easier from php. You might want to have a look to it.


AWStats is the best open source analytics/stats software I have used. Recently we have moved away AWStats and we are using Google Analytics, but that is because we are also using Google Adwords. AWStats is a great program.

0

精彩评论

暂无评论...
验证码 换一张
取 消