Google Analytics(分析)gtag在哪里可以找到自定义配置键值对

时间:2017-11-21 11:20:19

标签: google-analytics

我会在哪里找到自定义键/值对,这是我在Google Analytics信息中心中通过gtag配置传递的?

例如,我想在此处按键customKey过滤数据:

<script>
            window.dataLayer = window.dataLayer || [];
            function gtag(){dataLayer.push(arguments);}
            gtag('js', new Date());
            gtag('config', 'XXXXXX', {'customKey': 'value'});
        </script>

1 个答案:

答案 0 :(得分:1)

确实似乎the reference only discusses briefly the commandseventconfigset)。

大多数实际的customKey选项似乎都是基于每个主题在Guide's Advanced Tracking section(参见左侧边栏)下讨论的。例如:

Cookies and user identification

gtag('config', 'GA_TRACKING_ID', {
  'cookie_name': 'gaCookie',
  'cookie_domain': 'blog.example.co.uk',
  'cookie_expires': 2419200  // 28 days, in seconds
});

Custom dimensions and metrics

gtag('config', 'GA_TRACKING_ID', {
  'custom_map': {'dimension<Index>': 'dimension_name'}
});

IP anonymization

gtag('config', 'GA_TRACKING_ID', { 'anonymize_ip': true });

等...