AbdFatah / analytics-issues

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

Data recorded via Measurement Protocol is not reported on by the Analytics Dashboard #331

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Name of affected component: Measurement Protocol

Issue summary: Data recorded via Measurement Protocol is not reported on by the 
Analytics Dashboard even after 24 hours has passed. Note that the Real-time 
Overview correctly shows the traffic.

Steps to reproduce issue:

Send request. For example: 
http://www.google-analytics.com/collect?v=1&t=pageview&sr=1366x768&tid=UA-277908
06-1&vp=1366x768&cid=3E3CC249-1E99-4402-ADDF-CCE3222F1003&dp=%2Fbookmarks%2F

Expected output:
After 24 hours, I would expect to see some visits in the Analytics Dashboard.

Actual results:
No traffic was recorded.

Original issue reported on code.google.com by blackby...@gmail.com on 4 Sep 2013 at 4:54

GoogleCodeExporter commented 9 years ago
Was there any follow up with this issue? I am experiencing the same problem. 

Real-Time overview shows my POST request, but that's the only part where I can 
see events, and pages. 

Original comment by alberto....@gmail.com on 30 Jul 2014 at 4:25

GoogleCodeExporter commented 9 years ago
Still having the same problem

---------------------------------------------------------------------------
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
---------------------------------------------------------------------------
Name of affected component: Measurement Protocol

Issue summary: Events only show in real time reports. Not showing on historical 
reports.
Provide a brief summary of the issue you're experiencing.

Steps to reproduce issue:
1. Send an event to measurement protocol (POST method to 
http://www.google-analytics.com/collect)
2. Get a HTTP 200 OK . Event is sent with the following parameters:

      'v' => 1,
      'tid' => e.g. UA-37454802-1
      'cid' => gen_uuid(),
      't' => 'event',
      'ea' => 'play',
      'ec' => basename($_SERVER['REQUEST_URI']), 
      'el' => checkAgentType(),
      'uip' => $uip,
      'ua' => $ua,
      'dr' => $dr,
      'dh' => "example.com.",
      'dl' => urlencode($pod."/".basename($_SERVER['REQUEST_URI'])),
      'uid' => md5($query.$uip.date('Y-m-d').$ua.$rnd),

3. Event shows in real time report. After 24-48 hours still not showing under 
Behavior > Events > Overview

Expected output:
Event shows in real time report. After 24-48 hours i should see the event under 
Behavior > Events > Overview

Actual results:
Event shows in real time report. After 24-48 hours still not showing under 
Behavior > Events > Overview

Original comment by norman.n...@gmail.com on 21 Aug 2014 at 2:50

GoogleCodeExporter commented 9 years ago
I have the same issue with events. This is really annoying in my case since I 
now use events to track purchases (with Enhanced Ecommerce).

Note that most events are OK, only about 20% are missing for some reason. A 
guess : Sometimes, (20% could be the correct proportion), we generate the 
client ID, and sometime we grab it from javascript.

Original comment by vincent....@gmail.com on 16 Sep 2014 at 1:48

GoogleCodeExporter commented 9 years ago
that's exactly the problem! if you want a solution (that partially worked for 
me), thent stop sending UUID. looks like they need to fix this before we start 
generating UUIDs again.

Original comment by norman.n...@gmail.com on 24 Sep 2014 at 12:43

GoogleCodeExporter commented 9 years ago
Wouldn't you lose 20% from the fact that GA uses Sampling?  GA Premium should 
show all the data. 

Original comment by gk...@inviqa.com on 24 Sep 2014 at 12:46

GoogleCodeExporter commented 9 years ago
Hi Grant,

For our tests we do not used sampleRate parameter (which is set to 100% by 
default). Added to that, our tests are made on a very few qty of requests, so 
there is no sampling on display.

Original comment by vincent....@gmail.com on 24 Sep 2014 at 1:07