How to do site analytics with ruby ​​on rails

I was wondering what parameters for site analytics use ruby ​​on the rails application? I have not seen any solutions specifically designed for rails - more for web servers like Apache. I do not want to use google analytics, I would like the log / analytics to be local. After a quick look at the wiki list of web analytics software http://en.wikipedia.org/wiki/List_of_web_analytics_software , I don’t see anything that I can see how to include in my rails / ruby.

+3
source share
2 answers

Most users deploy rails applications behind Apache or other web servers, because Rails applications can be configured so that these web servers can quickly and efficiently serve static assets and cached pages. It also means that we can use the same log analysis tools that we always used as Analog, AWStats, etc.

Or we can just use and use Google Analytics. I like the lines of the magazine :)

Hope this helps!

0
source

AFAIK Rails solutions for Apache and nginx can benefit from the many tools developed for parsing weblogs over the years. I loved AWStats :)

, - - , , , - keen-gem Keen IO ( - ). - , :

Keen.publish_async("sign_ups", { :username => "lloyd", :referred_by => "harry" })

Rails . Workbench keen.io , API REST .

+1

Source: https://habr.com/ru/post/1708411/


All Articles