Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Google Analytics support real time reporting for custom dimensions?

I've already verified that my GTM and GA are linked correctly, and I've got a couple of virtual pageviews working (i.e. I can see them in the GA realtime report). But, I'd like to attach some metadata to these virtual pageviews, and I thought I'd accomplish this using custom dimensions.

This is how I've got it setup. In my pageview tag (the one that corresponds to a virtual pageview), I've set a couple of custom dimensions, as such:

Index | Dimension
1     | {{D1}}
2     | {{D2}}

where D1, and D2 are dataLayer variable macros.

I've also made sure to create these custom dimensions in my GA properties. Both are user scoped and have names that correspond to the dataLayer variable name (not the macro name).

I've set my GTM container to preview mode and checked the requests being sent, and the dimension looks like it's being sent correctly:

Dimension: {1: "d1 val", 2: "d2 val"}

Lastly, I'm setting these fields accordingly in the dataLayer whenever a fire a virtual pageview event (that triggers the pageview tag with the virtual url).

However, I'm not sure where to look for them in my GA report. They don't appear to be anywhere in the realtime report.

That gets me wondering, are custom dimensions not supported in real time reporting and I simply should just wait for GA to process them? Or should I assume something's wrong with how I'm setting it up?

like image 720
Andrew Chen Avatar asked Feb 21 '15 01:02

Andrew Chen


People also ask

How do I view custom dimensions data in Google Analytics?

With a standard Google Analytics report: The easiest way to view your custom dimensions data is by adding the dimension you want to view to a standard report. With a custom report: If you want to view more data and create a customized view, creating a custom report is the best option.

Can I use custom dimensions and custom metrics in my reports?

Include non-standard data in your reports.Custom dimensions and custom metrics are like default dimensions and metrics in your Analytics account, except you create them yourself. You can use them Analytics Help Sign in Google Help Help Center Community Analytics Privacy Policy Terms of Service Submit feedback Send feedback on...

What data can be found in a Google Analytics report?

In every Google Analytics report, you can find 2 types of data: dimensions and metrics. For example; gender, region, all pages, traffic sources, etc. are some predefined dimensions. Pageview, bounce rate, and average time on a page are some predefined metrics.

What are the Google Analytics 4 properties?

If you are using the next generation of Google Analytics, refer to the Google Analytics 4 propertiessection of this help center. Custom dimensions & metrics Include non-standard data in your reports. Custom dimensions and custom metrics are like default dimensions and metricsin your Analytics account, except you create them yourself.


1 Answers

They are not supported at this time.

Here is a list of the supported realtime dimensions and metrics:
https://developers.google.com/analytics/devguides/reporting/realtime/dimsmets/

like image 118
Philip Walton Avatar answered Sep 17 '22 23:09

Philip Walton