Firebase Analytics is just a wrapper for the Google Analytics to be easily connected to a Firebase app, right?
I have a Firebase web app that I've built using React (it's a single page app).
I've followed the Get Started guide on https://firebase.google.com/docs/analytics/get-started#add_the_sdk_to_your_app
and I've added Analytics to my Firebase app. I didn't have any analytics service before that.
What Google Analytics documentation should I refer to now?
Because I can see that calling firebase.analytics() logs some events that are not mentioned in Firebase documentation. For example: page_view.
We can see that the gtag.js mentions that it auto logs the page view event, and this is not mentioned in Firebase Analytics doc.
From https://developers.google.com/analytics/devguides/collection/gtagjs/pages?hl=en
QUESTION
Basically I would like to know exactly what happens when I call firebase.analytics() and what documentation should I refer to, in order to understand what is going on. Is it a wrapper to the gtag.js analytics?
Because I can already see some page_view events being logged, and they're not mentioned in the Firebase Analytics documentation.
In the link below you can see some events that Firebase Analytics mentions that it auto logs, but they are basically events for mobile apps, and none of them is the page_view event, which I can see already logged in my Google Analytics console.
