在谷歌分析中哪里可以找到自定义持久值?

时间:2018-03-14 05:05:09

标签: google-analytics analytics gtag.js

我根据以下文档

使用gtag向Google分析发送自定义持久值

enter image description here

我在API调用后获得可用信息时设置自定义值。

因此,在页面加载时,我会gtag('config', 'GA_TRACKING_ID_1');

一旦我获得API调用的数据,我就会gtag('set', { tenantName: '<tenant_name_from_response>' });

现在我的问题是我在哪里可以在Google Analytics分析报告中看到此参数国家/地区?或者我需要做一些特别的事情才能看到它吗?

我的GA信息中心 - enter image description here

提前致谢!

1 个答案:

答案 0 :(得分:0)

所提供的代码目前尚未发送信息。 代码未映射自定义维度,页面视图脚本应如下所示

gtag('config', 'GA_TRACKING_ID', {
  'custom_map': {'dimensionXX': 'tenantName'} //remplace the X for the correct index
});

当您在平台上的Property选项卡admin上创建自定义维度时,将为您提供索引。