-1

And how to set it up?

When I go to Adming -> +New Account, I need to enter a) Website name, b) Website URL, and c) Account name. I would like to use the code on a network of 25 sites, and there is no option not to enter a URL. When I enter it, it displays in the Analytics code that I get afterwards.

When I looked at a Google Analytics code on one of my sites, which is over one year old, it looks something like this:

<script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-01234567- 1']); _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>

When I am getting a code right now (which is suppose to be the code for a network of sites), it looks like this:

<script>
(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');

ga('create', 'UA-41928014-1', 'test.com');
ga('send', 'pageview');
</script>

it contains a URL / domain name in it.

In general I know that I need to set up an account, and apply filters (to have access to data for individual domains), but I am not sure how to do it step by step (especially with the test.com in the analytics code, as in the example above). Maybe there is a different / better way to do it?

Thank you.

4

1 に答える 1

1

'test.com'サブドメイン追跡の参照のみを提供するという点で、オプションのオプション パラメータであるため、それをオフにして、すべてのサイトにコードを配置できます。ただし、これらの 25 サイトのサブドメインがある場合、追跡できないという問題が発生します (ドキュメントhttps://developers.google.com/analytics/devguides/collection/analyticsjs/field-reference#cookieNameを参照) 。

すべてのサイトのロールアップ プロファイルを取得しようとしていると思いますか? それは素晴らしいことですが、サイトが大量のトラフィックを獲得している場合は、サンプリングに遭遇する可能性があるため、それぞれに個別のプロパティを作成することを強くお勧めします.

Google タグ マネージャーについてご存知ですか - http://www.google.com/tagmanager/ ? これほど多くのプロパティがある場合は、これらのタグへの変更の更新がはるかに簡単になり、時間も大幅に短縮されるため、これを検討します。

理想的には、次のように設定します。

1) コンテナーを作成します (このコンテナー コードをすべての Web サイトに適用します)。

2) GTM で 25 個の Google アナリティクス タグを作成し、{{url}} が test1.com に等しい場合に test1 Google アナリティクス タグを使用するというルールを設定します。

于 2013-09-07T15:34:16.063 に答える