Google Analytics报告中的自定义维度和指标(Android SDK)

时间:2013-11-20 08:42:29

标签: android google-analytics

通过使用Google Analytics Android SDK 3,我可以成功查看我的原生Android应用程序的统计信息。

关于this documentation我为自己的应用创建了自定义维度。 (似乎不需要从Web界面设置尺寸。编码就足够了)

// May return null if EasyTracker has not yet been initialized with a
// property ID.
EasyTracker easyTracker = EasyTracker.getInstance();

// Send the custom dimension value with a screen view.
// Note that the value only needs to be sent once, so it is set on the Map,
// not the tracker.
easyTracker.send(MapBuilder
    .createAppView("Home screen")
    .set(Fields.customDimension(1), "premiumUser");
    .build()
);

但是,当我查看Google Analytics网络界面时,我无法在任何地方看到自己的尺寸。从分析的“屏幕”部分,存在自定义变量,但没有维度的位置。如何在分析报告中查看自定义维度?

2 个答案:

答案 0 :(得分:3)

您必须创建一个自定义报告,其中包含自定义指标,维度..., 来自

  

自定义标签 - >新的自定义报告

答案 1 :(得分:0)

除了Mouna提到的自定义报告方法,您还可以在报告标签中看到自定义数据:

在“报告”标签中,单击名为“辅助维度”的按钮,然后在弹出窗口中选择自定义维度的名称。这会显示一个结果页面,其中包含自定义维度的列。

如果您没有看到任何结果,请在首次尝试不同的主要维度值后重复上述步骤(即,如果您在“主要维度”为“事件标签'”时未看到任何数据,然后再次尝试将主要维度设置为'事件类别'事件操作')。