So I have an app which is already published on App Store and is supposed to show it's users some information and gather analytics data on which information is mostly viewed by users. App is using Firebase DB so I decided to use Firebase Analytics as well to gather that analytics data.
Whenever a user opens a category of articles, app sends and event called "category_opened" with a few parameters (including "category" parameter which contains category id). Everything looks to be working, I can see the events showing up in my Firebase Analytics Dashboard BUT theirs parameters are available only in the "Events in the last 30 minutes" of the dashboard. Whenever 30 minutes since the last event have passed, all the event's parameters disappear and I can't find a way to view them.
Is there any way to see the whole analytics information (all events for selected time period with all their parameters) or firebase is deleting the parameters data after 30 minutes and leaving only event's count?