0

ドメインとサブドメインを持ついくつかの果物関連のサイトを所有および管理しており、それらを個別に追跡するだけでなく、まとめて追跡して、訪問者の合計値を取得したいとします。新しい非同期メソッドを使用して分析スクリプト設定を構築する正しい方法は何ですか?

これらのドメインがあるとしましょう:

apple.com
one.pear.com
one.peach.com
cherry.com
other.cherry.com
www.watermelon.com

私はそれを正しく行っているかどうか、そして最初のプッシュのためにドメイン部分に何を入れるべきか疑問に思っています:

私が現在持っているもの:

XXXXX - 総追跡コード YYYYY - 個別追跡コード

<script>
  _gaq.push(
    ['_setAccount', 'XXXXX'],
    ['_setDomainName', 'whatdoiputhere?'],
    ['_trackPageview']);

  _gaq.push(
    ['b._setAccount', 'YYYYY'],
    ['b._setDomainName', '[current_domain(just domain)]'],
    ['b._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>
4

1 に答える 1