首页 > 解决方案 > 如何在 Firebase Auth / Google Identity Platform 中获取每个租户的 MAU?

问题描述

我看到 Firebase 控制台仅在项目级别使用各种过滤器显示 MAU。我没有看到每个租户的过滤器。

当我在 Firebase Auth/Identity Platform 中启用多租户时,有没有办法找出每个租户的 MAU 计数?

标签: firebase-authenticationfirebase-analyticsgoogle-identity

解决方案


Firebase Analytics data is not linked to Firebase Authentication in any way. If you're seeing MAU in Analytics, it is not measuring Firebase Auth users. It is measuring its own sense of "user", based on the tokens it uses independently from Firebase Auth.

If you want per-tenant stats, you should add tenant information as user properties in custom events, export Analytics data to BigQuery, then gain insights from your data using BigQuery queries. The console won't be of help when working with user properties like this.


推荐阅读