This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Google Analytics Integration
Adam Wead edited this page Aug 8, 2019
·
39 revisions
- Go to the Home Page
- Open the source of the Home Page
- find gaq
- you should see javascript simmilar to below
- find gaq
<!-- Google Analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33252017-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
Check the value being set to 'setAccount' should match the machine below:
- QA = UA-33252017-3
- demo = UA-33252017-4
- production = UA-33252017-2
- staging = UA-33252017-5
If the account numbers match, Google Analytics is setup properly.
- 01/11/16 - Adam Wead
- 01/12/16 - Adam Wead (staging)
- 01/14/16 - Adam Wead (production)
- 01/26/2016 - Nick Yingling
- 02/22/2016 - Adam Wead
- 04/07/2016 - Nick Yingling
- 05/19/2016 - Carolyn Cole
- 06/13/2016 - M.Tribone (staging)
- 08/04/2016 - Carolyn Cole (local Sufia 7)
- 04/05/2017 - Carolyn Cole (ss-new-qa)
- 05/01/2017 - M.Tribone (ss-new-stage)
- 05/23/2017 - Carolyn Cole (ss-new-stage)
- 05/30/2017 - Adam Wead (ss-new-qa)
- 05/31/2017 - pke (ss-new-prod)
- 06/06/2017 - Justin Patterson (ss-new-prod)
- 08/22/2017 - Kieran Etienne (stage)
- 09/21/2017 - M.Tribone - 3.1 (qa-libraries)
- 11/16/2017 - Kieran Etienne (qa)
- 01/23/2018 - M.Tribone (stage=libraries)
- 02/21/2018 - Kieran Etienne (stage)
- 04/05/2018 - Adam Wead - 3.4 (qa)
- 06/15/2018 - M.Tribone - 3.5 (qa)
- 09/05/2018 - M.Tribone - 3.6 (dce)
- 09/21/2018 - M.Tribone - 3.6 (qa)
- 10/30/2018 - Adam Wead - migration
- 03/01/2019 - Adam Wead - 3.7 (qa)
- 05/29/2019 - M.Tribone - 3.8 (qa)
- 08/08/2019 - Adam Wead - 3.9 (qa)
Return to Testing Scripts