Was this article helpful?
Thanks for your feedback
The “Google Analytics” widget retrieves the Google Analytics data of the site associated with your stack using the Reporting API and displays the common metrics data (such as Pageviews, New Users) and user behaviors (such as average time on a page) on your Dashboard.
This step-by-step guide explains how to create the Google Analytics Dashboard Widget for your Dashboard.
The steps to be performed are as follows:
In order to use this extension, you will need your Google Service account key. Google Service accounts let you fetch (or automate fetching of) your site's Google Analytics data.
In case you don’t have a Service Account, read the instructions given in the Creating and managing service accounts document to create one. Make sure you create a Service account that is not assigned any role.
Now that you have a Service Account, create a new Service account key as per the instructions outlined in the Creating and managing service account keys document. You need to select JSON when setting the key type
Open the JSON file in a JSON editor, and note down the client_email value
You will need this email address in Step 3 while configuring your Google Analytics account. You will also need the complete JSON code in Step 4 while configuring the Lambda function of your extension in Contentstack
To enable the Google Analytics API, perform the steps given below:
After logging in to your Google Analytics account, perform the steps given below:
Navigate to the Admin page. Under the View section, click View Settings
You will see the View details. Copy the value given under View I
Download the Lambda function from GitHub. It contains all the required files.
Then, navigate to your lambda function folder through a Terminal and install npm:
npm install
This downloads the required node modules within your lambda function.
Open the service_account.json file within your lambda function folder and replace the existing content with the JSON content of the Service Key file that you extracted in Step 1. After that, zip your project file.
Note: If you are using Linux, use the zip -r index.zip * command in your root folder to zip the file.
When creating your Lambda function in AWS Lambda, upload your project zip file. Select 8.10.0 as the Node.js version.
Under the Configuration section of your lambda function, add an API Gateway trigger. You will get an API Gateway URL, like this, https://abcde1234.execute-api.us-east-1.amazonaws.....
Store this URL, as you will need this while configuring the extension in the next step.
For additional security, you can configure an API Key for the API Gateway trigger and use this API Key when configuring your lambda function
{ "url": "https://abcde1234.execute-api. us-east-1.amazonaws.com/default/ contentstack-google-analytics-widget", "viewid": "111111111", "x-api-key": "SSS111Sss1ssSSsssS11s11SS11SS" }
Once you have added your Dashboard Widget, navigate to the Dashboard by clicking on "Dashboard" link at the top.
You should be able to see the Google Analytics widget added to your Dashboard
Note: Make sure that the URL that you provide is live.
You can view the analytics data of the last 1, 7, 15, 30, 180, or 365 day(s). Default value is 30 days.
Additional Resource: In Contentstack, you can view Google Analytics metrics for a particular entry using our Google Analytics Widget.
You can also integrate Google Analytics, via GTM (Google Tag Manager), into Contentstack. To do so, check out Google Analytics via GTM guide.
Was this article helpful?
Thanks for your feedback