kalnyc67 / analytics-issues

Automatically exported from code.google.com/p/analytics-issues
0 stars 0 forks source link

Events in RealTime are not grouped by category. They are just listed in flat way sorted from newest #574

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
---------------------------------------------------------------------------
NOTE: This issue tracking system is for Google Analytics developer products
only.
If you are not a developer/programmer visit:
http://www.google.com/analytics/support.html
---------------------------------------------------------------------------
Google analytic API: Real Time Reporting API

ga.js

When I send different events to ga from my website and look at Google Analytic 
dashboard I see events in Real Time mode NOT grouped by category. They are just 
listed in flat, all events are mixed together. It's very hard to analyze now 
how many events of certain category were pushed in real time mode.

It seems that it started to behave like this from the day before yesterday. 
Before that it was in grouped representation: events were grouped by category.

Steps to reproduce issue:
1. ga('send', 'event', 'BuyItemCategory', 'TotalPrice=100', '', 1);
2. ga('send', 'event', 'BuyItemCategory', 'TotalPrice=200', '', 1);
3. ga('send', 'event', 'BuyItemCategory', 'TotalPrice=300', '', 1);
2. look at dashboard for realtime events
3. observe that events are just listed in flat manner, not in grouped hierarchy

Expected output:
Table with 1 row: BuyItemCategory -> 3

Actual results:
Table with 3 rows: 
  BuyItemCategory -> 1
  BuyItemCategory -> 1
  BuyItemCategory -> 1

Original issue reported on code.google.com by igorbort...@gmail.com on 23 Jan 2015 at 11:22