Quote Originally Posted by HunkMoneyLuke View Post
I hate that I can't get an overview of all my sites together, but instead have to dive into each.
Put multiple tracking tags on each page. I typically have 3 tags on each page. Here's an example...

Code:
<script type="text/javascript">

  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-950572-1']);
  _gaq.push(['_trackPageview']);

  _gaq.push(['s3x._setAccount', 'UA-950572-12']);
  _gaq.push(['s3x._setDomainName', 'none']); 
  _gaq.push(['s3x._setAllowLinker', true]); 
  _gaq.push(['s3x._trackPageview']);

  _gaq.push(['s3xb._setAccount', 'UA-950572-27']);
  _gaq.push(['s3xb._setDomainName', 'none']); 
  _gaq.push(['s3xb._setAllowLinker', true]); 
  _gaq.push(['s3xb._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>
The first tag is for the site. The second tag is for my "all sites" profile. The third tag is for my "all blogs" profile. Notice that I set a different object for the 2nd and 3rd tags. Works well.