Tracking your Site using Google Analytics
Organizations can add a Google Analytics tracker to their site.
Step-by-step guide
To add a Google Analytics tracker
Go to Site Administration > Appearance > Additional HTML
Add the snipper of code given to you by Google Analytics
Click on "Save changes"
The Google Analytics code should look something like the code below, where UA-123456-XX is your organization's Google Analytics unique identifier.
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123456-XX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123456-XX');
</script>