Vinicius Souza
Vinicius Souza

Reputation: 143

Is it possible to get which user triggered an event in Firebase Console?

Im learning how to use the analytics tool of firebase, i have the following problem:

enter image description here

I'd like to get who triggered those events, how would i got about doing that?

Upvotes: 0

Views: 470

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317758

Google Analytics for Firebase only collects anonymized data by default. The console doesn't give you the identity of users who trigger events.

If you want per-user information, you're going to have to write client code to set a user property with the identifying piece of data (for example, a user ID), then export Analytics data to BigQuery, and make queries from there.

Upvotes: 2

Related Questions