Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,559,390
Community Members
 
Community Events
184
Community Groups

Google Analytics - track one space

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

1 answer

1 accepted

2 votes
Answer accepted
David at David Simpson Apps
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Jun 22, 2017 • edited

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!

David at David Simpson Apps
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Jul 09, 2017

Yes, that's correct :)

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,

 


  

David at David Simpson Apps
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Jul 12, 2017

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>


 
Susan Ostreicher
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 04, 2018

@web service, I just came across this article. Does this help answer your question? 

Custom dimensions and metrics with gtag.js

Susan Ostreicher
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Jan 04, 2018
<!-- 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!

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?

David at David Simpson Apps
Marketplace Partner
Marketplace Partners provide apps and integrations available on the Atlassian Marketplace that extend the power of Atlassian products.
Oct 16, 2019

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.

@Helen Gosper

Just a note, Atlassian limits the data (location and page views) we can see in Google Analytics about public (anonymous, unauthenticated) users. My thought is that they are pushing Confluence users to purchase Premium to get Analytics which includes page views and authenticated user activity.

Like Helen Gosper likes this

Hi David. We're not quite ready to move to Cloud. Can you suggest custom HTML for G4 in Confluence Server?

Regards, Adriane

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events