You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello,
We use Google Analytics for our whole Confluence instance (just one .js tag putin the custom html)
If I want to track just one space. I went ot behaviour - all pages and did a search for the space key - but I think that just takes me to the main page. How do I track all visits to one space?
Thanks
Mr. V
Add a custom dimension which tracks the space key, then in Google Analytics you can simply filter on the space key to see the results for just that space.
See my blogpost - Tracking Atlassian Confluence usage with Google Analytics - for how to do this, or copy the code below:
<script> // Standard Google Universal Analytics code (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); AJS.toInit(function(){ ga('create', 'UA-XXXX-Y', 'auto'); // Add a page-level custom variable to record the space-key if (typeof AJS.params.spaceKey === 'string') { ga('set', 'dimension1', AJS.params.spaceKey); // Set a `spaceKey` dimension at page level } ga('send', 'pageview'); }); </script>
Wow! That is fantastic!
We do not use the Google Analytics Plugin, instead, we just added the tracking code to the Custom HTML.
Will this still work?
Substitute my GA code instead UA-XXXX-Y?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, that's correct :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great!
I don't have the Google Analytics Plugin - will I still be able to get this info easily?
For this part:
"You now have a Custom Dimension named Confluence Space Key which is available for use within the Google Analytics interface. Next, you’ll need to populate this custom dimension with some data. "
I see this:
var dimensionValue = 'SOME_DIMENSION_VALUE';
ga('set', 'dimension1', dimensionValue);
dimensionValue is the space key?
And where does this code go? In my custom HTML?
Sorry for the noob questions.
Thanks,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
There is a new and recommended Global Site Tag (gtag.js) tracking code as follows.
What's the respective way of adding Space tracking to a custom dimension? Thank you
<!-- Global Site Tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments)};
gtag('js', new Date());
gtag('config', 'UA-XXXX');
</script>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@web service, I just came across this article. Does this help answer your question?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-Y"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
// Maps 'dimension1' to 'Confluence_Space_Key'.
gtag('config', 'UA-XXXXXXXXX-Y', {
'custom_map': {'dimension1': 'Confluence_Space_Key'}
});
// Sends an event that passes 'Confluence_Space_Key' as a parameter.
if (typeof AJS.params.spaceKey === 'string') {
gtag('event', 'pageview', {'Confluence_Space_Key': AJS.params.spaceKey});
}
</script>
I'm working through the same issue and trying to piece together the code, though without really understanding what I'm looking at.
@David at David Simpson Apps, not sure if you can confirm if the above would work for gtag.js, but your blog posts have been so helpful and I'd love to someone more knowledgeable than I am take a look at this!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I gather this won't work for Confluence cloud - anyone?
Unless there is somewhere else to put the code, 'custom html' not seeming to be available in Admin?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Helen, you can use Google Analytics in Confluence on Cloud, then use the drilldown report in Google Analytics to look at analytics on one space.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David. We're not quite ready to move to Cloud. Can you suggest custom HTML for G4 in Confluence Server?
Regards, Adriane
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.