# Google Analytics ## Features | Feature | Supported? | | :--- | :--- | | Full Refresh Sync | Yes | | Incremental Sync | Yes | | Replicate Incremental Deletes | No | | SSL connection | Yes | | Custom Reports | Yes | ### Supported Tables This source is capable of syncing the following tables and their data: * website\_overview * traffic\_sources * pages * locations * monthly\_active\_users * four\_weekly\_active\_users * two\_weekly\_active\_users * weekly\_active\_users * daily\_active\_users * devices * Any custom reports. See [below](https://docs.airbyte.io/integrations/sources/google-analytics-v4#reading-custom-reports-from-google-analytics) for details. Please reach out to us on Slack or [create an issue](https://github.com/airbytehq/airbyte/issues) if you need to send custom Google Analytics report data with Airbyte. ## Getting Started \(Airbyte Cloud\) 1. Click `OAuth2.0 authorization` then `Authenticate your Google Analytics account`. 2. Find your View ID for the view you want to fetch data from. Find it [here](https://ga-dev-tools.web.app/account-explorer/). 3. Enter a start date, window size, and custom report information. 4. You're done. ## Getting Started \(Airbyte Open-Source\) There are 2 options of setting up authorization for this source: * Create service account specifically for Airbyte and authorize with JWT. Select "JWT authorization" from the "Authentication mechanism" dropdown list. * Use your Google account and authorize over Google's OAuth on connection setup. Select "Default OAuth2.0 authorization" from dropdown list. #### Create a Service Account First, need to select or create a project in the Google Developers Console: 1. Sign in to the Google Account you are using for Google Analytics as an admin. 2. Go to the [Service accounts page](https://console.developers.google.com/iam-admin/serviceaccounts). 3. Click `Create service account`. 4. Create a JSON key file for the service user. The contents of this file will be provided as the `credentials_json` in the UI when authorizing GA after you grant permissions \(see below\). #### Add service account to the Google Analytics account Use the service account email address to [add a user](https://support.google.com/analytics/answer/1009702) to the Google analytics view you want to access via the API. You will need to grant [Read & Analyze permissions](https://support.google.com/analytics/answer/2884495). #### Enable the APIs 1. Go to the [Google Analytics Reporting API dashboard](https://console.developers.google.com/apis/api/analyticsreporting.googleapis.com/overview) in the project for your service user. Enable the API for your account. You can set quotas and check usage. 2. Go to the [Google Analytics API dashboard](https://console.developers.google.com/apis/api/analytics.googleapis.com/overview) in the project for your service user. Enable the API for your account. ## Reading Custom Reports You can replicate Google Analytics [Custom Reports](https://support.google.com/analytics/answer/1033013?hl=en) using this source. To do this, input a JSON object as a string in the "Custom Reports" field when setting up the connector. The JSON is an array of objects where each object has the following schema: ```text {"name": string, "dimensions": [string], "metrics": [string]} ``` Here is an example input "Custom Reports" field: ```text [{"name": "new_users_per_day", "dimensions": ["ga:date","ga:country","ga:region"], "metrics": ["ga:newUsers"]}, {"name": "users_per_city", "dimensions": ["ga:city"], "metrics": ["ga:users"]}] ``` To create a list of dimensions, you can use default GA dimensions \(listed below\) or custom dimensions if you have some defined. Each report can contain no more than 7 dimensions, and they must all be unique. The default GA dimensions are: * `ga:browser` * `ga:city` * `ga:continent` * `ga:country` * `ga:date` * `ga:deviceCategory` * `ga:hostname` * `ga:medium` * `ga:metro` * `ga:operatingSystem` * `ga:pagePath` * `ga:region` * `ga:socialNetwork` * `ga:source` * `ga:subContinent` To create a list of metrics, use a default GA metric \(values from the list below\) or custom metrics if you have defined them. A custom report can contain no more than 10 unique metrics. The default available GA metrics are: * `ga:14dayUsers` * `ga:1dayUsers` * `ga:28dayUsers` * `ga:30dayUsers` * `ga:7dayUsers` * `ga:avgSessionDuration` * `ga:avgTimeOnPage` * `ga:bounceRate` * `ga:entranceRate` * `ga:entrances` * `ga:exitRate` * `ga:exits` * `ga:newUsers` * `ga:pageviews` * `ga:pageviewsPerSession` * `ga:sessions` * `ga:sessionsPerUser` * `ga:uniquePageviews` * `ga:users` Incremental sync supports only if you add `ga:date` dimension to your custom report. ## Rate Limits & Performance Considerations \(Airbyte Open-Source\) [Analytics Reporting API v4](https://developers.google.com/analytics/devguides/reporting/core/v4/limits-quotas) * Number of requests per day per project: 50,000 * Number of requests per view \(profile\) per day: 10,000 \(cannot be increased\) * Number of requests per 100 seconds per project: 2,000 * Number of requests per 100 seconds per user per project: 100 \(can be increased in Google API Console to 1,000\). The Google Analytics connector should not run into Google Analytics API limitations under normal usage. Please [create an issue](https://github.com/airbytehq/airbyte/issues) if you see any rate limit issues that are not automatically retried successfully. ## Changelog | Version | Date | Pull Request | Subject | | :--- | :--- | :--- | :--- | | 0.1.9 | 2021-10-27 | [7410](https://github.com/airbytehq/airbyte/pull/7410) | Add check for correct permission for requested `view_id` | | 0.1.8 | 2021-10-13 | [7020](https://github.com/airbytehq/airbyte/pull/7020) | Add intermediary auth config support | | 0.1.7 | 2021-10-07 | [6414](https://github.com/airbytehq/airbyte/pull/6414) | Declare oauth parameters in google sources | | 0.1.6 | 2021-09-27 | [6459](https://github.com/airbytehq/airbyte/pull/6459) | Update OAuth Spec File | | 0.1.3 | 2021-09-21 | [6357](https://github.com/airbytehq/airbyte/pull/6357) | Fix oauth workflow parameters | | 0.1.2 | 2021-09-20 | [6306](https://github.com/airbytehq/airbyte/pull/6306) | Support of airbyte OAuth initialization flow | | 0.1.1 | 2021-08-25 | [5655](https://github.com/airbytehq/airbyte/pull/5655) | Corrected validation of empty custom report | | 0.1.0 | 2021-08-10 | [5290](https://github.com/airbytehq/airbyte/pull/5290) | Initial Release |