はい、可能です。
その方法はいくつかあると思いました。1 つの方法は、さまざまな国のページにさまざまな追跡 ID コードを追加することです。
Google アナリティクス トラッキング コードのコードは次のとおりです。
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxxxxxx']);
_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>
UA-xxxxxxxxxx は、複数適用できるトラッキング ID です。
国または言語ごとのページには、異なる追跡 ID を持つコードのコピーが含まれています。
また、すべてのページには、「グローバル」追跡 ID であるコードの別のコピーも含まれています。