How to remove Google Analytics event from Firebase

How to remove Google Analytics event from Firebase?

While I am testing, I have written several events in Firebase Analytics. Firebase orders all events in alphabetical order by default. Therefore, these testing events are interrupted with the original events.

I could arrange them according to calculations to extend all test events. But it’s hard to find the main events, since they are not sorted alphabetically.

I did not find any options in the Firebase panel to delete the event. Is there a way to remove old events from firebase?

+7
firebase firebase-analytics
source share
4 answers

There is currently no way to delete events after they are logged into Firebase Analytics that I know of. However, over time, events will deviate from the default view (which is set to "last 30 days"), or you can switch the time period to a shorter time. As you already mentioned, you can also click on the column heading to sort it by a different value or “add filter” to filter by audience or user property.

+10
source share

You can create a new Firebase project if you want to start from scratch. It is also a fairly common practice to use one project to experiment and test your analytics implementation, and then to go to your Firebase project when everything looks good.

+5
source share

As Steve Ghanem suggested the simplest thing you can do to reset, Firebase Analytics data is to register a new Firebase project and the one in your application. You can also save the old project for debugging / development.

0
source share

It is not possible to delete AFAIK analytic events, but in some views you can adjust the time interval with a filter in the upper right corner to limit the listed events. I'm afraid you need to rely on text input in your audience’s mood.

0
source share

All Articles