Custom dimension in collect.googleanalytics report

I am using collect.googleanalytics ( https://pypi.python.org/pypi/collective.googleanalytics ) to add some GA reports to plone site.

How can I use custom dimensions (like ga: dimension1 or ga: dimension2) in a new Google Analytics report? I don't see any related option in the Request Sizes field.

+3


source to share


1 answer


Decided to update the .googleanalytics config.py collection to support custom dimensions.



DIMENSIONS_CHOICES = (
    ...
    "ga:dimension1",
    "ga:dimension2",
    "ga:dimension3",
    "ga:dimension4",
    "ga:dimension5",

      

+4


source







All Articles