I want to monitor mobile application, basically one page application. To do this I am going to use Google Analytics and add Events for user interactions.
With Google Analytics you have 5 values you can send to Google Analytics (http://goo.gl/6Gs4b)
- category
- action
- label
- value
- non-interaction
With every Event I want also send group identification. It will be basically something like Week 1, Week 2, Week 3.
I am not sure which of _trackEvent
values would be best for monitoring groups. Not just add value but also be able to track by groups and see differences by groups.
So if I have:
_trackEvent('login', 'success', 'week 1');
_trackEvent('login', 'error', 'week 1');
Would I be able to monitor login success rate for week 1, week 2, week 3 and so on?
Thanks.