我会在哪里找到自定义键/值对,这是我在Google Analytics信息中心中通过gtag配置传递的?
例如,我想在此处按键customKey
过滤数据:
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'XXXXXX', {'customKey': 'value'});
</script>
答案 0 :(得分:1)
确实似乎the reference only discusses briefly the commands(event
,config
,set
)。
大多数实际的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
});
gtag('config', 'GA_TRACKING_ID', {
'custom_map': {'dimension<Index>': 'dimension_name'}
});
gtag('config', 'GA_TRACKING_ID', { 'anonymize_ip': true });
等...