Domanda

I'd like to track the activity per user and know how they interact with the different options and try to track all the possible clicks performed by a user.

At best would like to use a third party tool instead to create a tracking system from scratch, that definitely will boost my project development because that's a core part of my system.

I think that google analytics can perform such tasks but I can't go into that level of detail per user.

I'm using C# / ASP.NET MVC 4

thanks

È stato utile?

Soluzione

Google Analytics (free version) does not let you view data on indivual visitor basis, only aggregated reports. The only way would be to store a unique id per visitor as a custom var and segment by that variable, which would be hugely inconvenient, would quite possibly violate Googles TOS and would still not quite work the way you want to.

You could for example install Piwik (if you're on PHP/Mysql) - that's an open source tracking package that, while it's pretty much useless for ad campaign management, is a halfway decent way to track how visitors move around on your site (plus, you have access to the raw data). Be aware that Piwik doesn't scale well, you'll need a lot of hardware for a big site.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top