*** title: Google Analytics subtitle: >- Integrate Google Analytics 4 and Google Tag Manager with Fern Docs. Complete setup instructions for tracking website traffic and insights. ------------------------------------------------------------- For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see [https://buildwithfern.com/learn/llms.txt](https://buildwithfern.com/learn/llms.txt). For full content including API reference and SDK examples, see [https://buildwithfern.com/learn/llms-full.txt](https://buildwithfern.com/learn/llms-full.txt). Fern supports integrating with both [Google Analytics 4](https://developers.google.com/analytics) and [Google Tag Manager](https://tagmanager.google.com/). ## Google Analytics 4 Before you begin, ensure you have a Google Analytics 4 property ID. This ID is typically in the format `G-XXXXXXXXXX`. Open your `docs.yml` file and add your Google Analytics 4 property ID under the `measurement-id` key: ```yaml analytics: ga4: measurement-id: G-12345678 ``` You can optionally add the ID as an environment variable: ```yaml analytics: ga4: measurement-id: ${GA4_MEASUREMENT_ID} # scans for GA4_MEASUREMENT_ID environment variable ``` Check your browser's developer tools or the network tab to confirm that the analytics script is loading correctly. Note that it may take 24–48 hours for website traffic data to start appearing in Google Analytics. ## Google Tag Manager Before you begin, obtain a container ID from your Google Tag Manager account. This ID follows the format `GTM-XXXXXX`. Open your `docs.yml` file and add your Google Tag Manager container ID under the `container-id` key: ```yaml analytics: gtm: container-id: GTM-NS32L7KR ``` You can optionally add the ID as an environment variable: ```yaml analytics: gtm: container-id: ${GTM_CONTAINER_ID} # scans for GTM_CONTAINER_ID environment variable ``` Check your browser's developer tools or the network tab to confirm that the analytics script is loading correctly. Note that it may take 24–48 hours for website traffic data to start appearing in Google Analytics.