Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What would happen if # of events exceeds 500 on Firebase Analytics?

I have been using Firebase Analytics for my apps and I like it. Currently I have 300 events set up on one of my apps. I learned that the max number of events we can have is 500.

What would happen if # of events exceeds 500 on Firebase Analytics? Would it just stop logging new event? (501st event) Or is there any better way to avoid it?

I will appreciate your advice!

like image 990
Yuichi Kato Avatar asked May 17 '18 05:05

Yuichi Kato


People also ask

What would happen if nuclear bomb went off?

BLAST WAVE can cause death, injury, and damage to structures several miles out from the blast. RADIATION can damage cells of the body. FIRE AND HEAT can cause death, burn injuries, and damage to structures several miles out.

How far will a nuclear blast reach?

Mild, first-degree burns can occur up to 11 km (6.8 miles) away, and third-degree burns – the kind that destroy and blister skin tissue – could affect anyone up to 8 km (5 miles) away. Third-degree burns that cover more than 24 percent of the body would likely be fatal if people don't receive medical care immediately.

How would you survive a nuclear bomb?

If there is no reinforced room, you can lie under a sturdy table or next to (not under) a bed or sofa. You may be crushed under a bed or sofa if a concrete slab crashes down. Keep away from doors, tall furniture and windows, as they will probably shatter.

How much damage would a nuclear bomb do?

A single nuclear explosion might produce 10,000 cases of severe burns requiring specialized medical treatment; in an all-out war there could be several million such cases. In an all-out war, lethal fallout would cover much of the United States.


1 Answers

Extra events are dropped. A firebase_error event is logged with a firebase_error parameter which indicates the error code. See this documentation for more information.

There's no other way to avoid it, but to manage your event logging implementation properly. Note that event in Google Analytics for Firebase is equivalent to the user's interaction within your app.

I would not suggest to create or log an event with incremental index, prefix or suffix in the name. You may also want to use the event parameter.

For example, you have a login page (with authentication methods of using Facebook, Google or Username/Password) and you'd like to track what is the most commonly used by the users. With this, you could log a custom event with the name of "user_login" and a parameter or login_method. After this, add the parameter in the custom parameter reporting to see the counts.

Hope this helps :)

like image 137
looptheloop88 Avatar answered Sep 19 '22 17:09

looptheloop88