Metrics 

As you set up Google Analytics 4, you may want to compare the reported results in your Google Analytics 4 property against those in your Universal Analytics property.

Users

Metric UA GA4
Total Users Primary user metric in UA: Total number of users Total number of unique users who logged an event
New Users Number of users who interacted with your site for the first time Number of users who interacted with your site or launched your app for the first time. The metric is measured by the number of new unique user IDs that logged the first_open or first_visit event.
Active Users N/A Primary user metric in GA4: Number of distinct users who visited your website or application. An active user is any user who has an engaged session or when Analytics collects: The first_visit event or engagement_time_msec parameter from a website The first_open event or engagement_time_msec parameter from an Android app The first_open or user_engagement event from an iOS app

Pageviews

Metric UA GA4
Pageview Total number of pages viewed. Repeated views of a single page are counted. aka Views: Total number of app screens and/or web pages your users saw. (The Views metric found in the reporting interface is the combination of pageviews and screenviews.) Repeated views of a single screen or page are counted.
Unique Pageview Total number of pages viewed but duplicates are not counted N/A

Purchases

Metric UA GA4
Purchases Purchase events are fired within the Enhanved Ecommerce model. Data is pulled from a products array via Google Analytics-provided JavaScript and collected in a purchase event when you choose to send that event. Purchase events are recommended and collect data in a similar fashion to UA, but there are differences. Does not provide additional JavaScript for array collection and expects you to provide the items array when collecting a purchase event on your own. (Though the same advice is given with regard to populating a data layer object.)

Sessions

Metric UA GA4
Session Period of time a user is actively engaged with your website or app. Has defined parameters for what may cause it to end e.g. a session will end when there has been more than a 30-minute period of inactivity (depending on the session timeout settings), the timestamp has been cut off at midnight (according to time zone the view is set up in), or a new campaign parameters are encountered. If a user comes back after a session timeout, it will start a new session. If the user is on the website when midnight arrives, a new session will be started. If a user picks up new campaign parameters while on the website, a new session will be started. aka Session Start: To determine the session that each event comes from, the session_start event generates a session ID and Analytics associates the session ID with each subsequent event in the session. A session will end when there has been more than a 30-minute period of inactivity (depending on the session timeout settings.) Sessions are not restarted at midnight or when new campaign parameters are encountered. If a user comes back after a session timeout, it will start a new session.

Session/Traffic based acquistion

Metric UA GA4
Session/Traffic based acquisition metrics Found in the Acquisition section in a number of different reports, such as the Channels report or the Source/Medium report. Channel or Source/Medium is the dimension being analyzed against metrics such as Users and Sessions. Traffic acquisition metrics can be found in the Traffic Acquisition report. The dimensions of Channel or Source/Medium are measued against metrics such as Users and Sessions. Note that the main differences you may see between UA and GA4 for acquisition metrics are aligned with the differences you will see for Users or Sessions.

Conversions

Metric UA GA4
Conversions You define a goal to indicate that a particular user action is to be considered a conversion. For example, if you define a "Form Submit" goal, a conversion will be registered each time a user submits the form. UA counts only one conversion per session for each goal. So, if a user submits the form twice during the same session, only one conversion will be counted for the "Form Submit" goal. You specify a conversion event for each action that you want to count as a conversion. For example, if you specify that the "Form Submit" event is a conversion event, a conversion will be registered each time a user submits the form. GA4 counts every instance of the conversion event, even if the same conversion event is recorded multiple times during the same session. So, if a user submits the form twice during the same session, two conversions will be counted.

Bounce Rate

Metric UA GA4
Bounce rate Percentage of singe page sessions in which there was no interaction with the page. A bounced session has a duration of zero seconds. For example, if a user visits your website and reviews content on your homepage for several minutes, but leaves without clicking on any links or triggering any events being recorded as interaction events, then the session will count as a bounce. Percentage of sessions that were not engaged sessions. For example, if a user visits your website, reviews content on your homepage for less than 10 seconds, and then leaves without triggering any events or visiting any other pages or screens, then the session will count as a bounce. An engaged session is a session that lasts 10 seconds or longer, has one or more conversion events, or has two or more page or screen views. If a user doesn't have an engaged session (that is, they don't meet any of the criteria for an engaged session), then Google Analytics counts the session as a bounce.

Events

Metric UA GA4
Total events A Universal Analytics event has a Category Action, and Label is its own hit type. For example, an event can be set up to register that a sign-up button has been clicked. The event might have a category of "CTA", an action of "Sign Up", and a label that is the destination URL. Total events increments each time a category/action/label event is triggered. N/A
Event count N/A Ever "hit" is an event and GA4 events have no notion of Category, Action, or Label. For example, when someone views one of your website pages, a page_view event is triggered. All actions are events. Each event name is not necessarily unique (in fact, it's best practice to reuse the same event name many times, differentiating the event by the parameter values collected). For example, a sign-up might have an event name of sign_up with parameters page_location, product_form_id, and so on. The same event name could (and should) be used on every sign up button across the site (whereas in UA, you would wnat to use unique event naming for each button).