本文介绍了Firebase Analytics:在控制台中注册自定义参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我无法理解在Firebase Analytics控制台中注册自定义事件的自定义参数有什么好处.

I'm having trouble understanding what's the benefit of registering the custom parameters of a custom event in the Firebase Analytics console.

  1. 是用于分析数据还是用于记录数据?

  1. Is it for analyzing the data or for logging the data?

如果我没有注册自定义参数,事件是否仍会成功记录?

If I don't register the custom parameters, will the events still being logged successfully?

如果我想在BigQuery中分析数据,我是否首先必须在Firebase控制台中注册这些参数?

If I want to analyze the data in BigQuery, will I first have to register these parameters in the Firebase console?

如果我在应用程序中使用的自定义参数比Firebase的全局参数报告配额"多,那么这些事件是否仍会被记录?或者我可能会丢失"这些事件的数据?

If I'm using more custom parameters in my app than the "Global parameter reporting quota" of Firebase, then will these events still being logged? Or I might "lose" the data for these events?

我已经仔细阅读了文档,但不清楚如何处理自定义参数.

I've read the documentation thoroughly but it's not clear how the custom parameters are being handled.

推荐答案

我将回答我的问题,因为现在我的情况更加清晰了:

I will answer my questions since I now have a clearer picture:

TL; DR::如果要在Firebase控制台中分析自定义参数,则必须首先注册它们.如果要在BigQuery中分析它们,则不必注册它们,但是需要在开始记录这些事件之前将项目链接到BigQuery.

TL;DR: If you want to analyze the custom parameters in the Firebase console, you first have to register them. If you want to analyze them in BigQuery, you don't have to register them, but you need to link your project to BigQuery before you start logging these events.

  1. 无论您是否在Firebase控制台中注册参数,都将始终记录事件和自定义参数.

  1. The events and custom parameters will be always being logged, regardless if you register the parameters in the Firebase console or not.

是的,但是将在Firebase控制台中记录事件以及自定义参数,但是,除非注册它们,否则您将无权访问自定义参数的数据.目前限制为10个文本参数和40个数字参数.因此,在控制台中注册参数将使您能够在Firebase控制台中分析这些参数.

Yes, the events will be logged as well as the custom parameters, HOWEVER, in the Firebase console, you won't have access to the data of the custom parameters unless you register them. And currently there is a limit of 10 text parameters and 40 numeric parameters. So registering the parameters in the console will allow you to analyze these parameters in the Firebase console.

否,即使您未在Firebase控制台中注册参数,BigQuery也会保留所有事件和参数的数据.在开始在应用程序中记录事件之前,您需要如何将项目链接到BigQuery(需要付款计划).从您链接该项目开始,BigQuery就可以访问所有内容.

NO, BigQuery will have the data for all events and parameters even if you don't register the parameters in the Firebase console. HOWEVER you need to link your project to BigQuery (requires a payment plan), BEFORE you start logging the events in the app. BigQuery will have access to everything from the time you link the project and onwards.

先前的答案也适用于此问题.

Previous answers apply to this question as well.

来源: https://stackoverflow.com/a/44501664/658323 (由Google产品经理回答)& https://stackoverflow.com/a/44808845/658323

Sources: https://stackoverflow.com/a/44501664/658323 (answered by a Google product manager) & https://stackoverflow.com/a/44808845/658323

这篇关于Firebase Analytics:在控制台中注册自定义参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 17:57