{"id":52455,"date":"2013-05-23T07:59:02","date_gmt":"2013-05-23T05:59:02","guid":{"rendered":"https:\/\/www.humanlevel.com\/sin-categorizar\/como-medir-el-trafico-en-webs-multidominio.html"},"modified":"2023-10-16T18:17:24","modified_gmt":"2023-10-16T16:17:24","slug":"how-to-measure-traffic-on-multidomain-websites","status":"publish","type":"post","link":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites","title":{"rendered":"How to measure traffic on multidomain websites"},"content":{"rendered":"<p>On <strong>websites where content is available in multiple languages<\/strong>, it is common to use multiple domains to distribute content. We must keep in mind that, even if we use several domains to distribute the content of our website, the users of our site will navigate between them when changing the language with the selector, or when visiting our blog or the microsite of our latest product launched on a domain independent of the main one. In this case we are interested in counting this behavior as a single user, although in the analytics it is counted as a different visit as many times as the domain is changed.<\/p>\n<p>The <strong>multi-domain architecture<\/strong> has special visitor tracking needs compared to sites stored in a single domain.  <strong>Google Analytics considers visits to different domains as unique and unrelated<\/strong>, it is not interested in having visitor data from one website appear in the Analytics report of another website without any relation to the first.<\/p>\n<h2>How to set up Analytics multi-domain tracking<\/h2>\n<p>Since we are going to use all our domains as a single site, the first thing we must be clear about is that we are going to <strong>use a single account to group all the data<\/strong> of the visits of our <strong>multidomain site<\/strong>.<\/p>\n<p>Although the standard <strong>Google Analytics<\/strong> configuration is intended to track content and users from a single domain per account, we can customize it for a <strong>multi-domain configuration<\/strong> like the one in the scenario in the following example.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter size-full wp-image-9340\" title=\"Example of a web site consisting of 3 domains\" src=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/2013-05-21_2235.png\" alt=\"Multi-language website monitoring\" width=\"493\" height=\"251\" srcset=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/2013-05-21_2235.png 493w, https:\/\/www.humanlevel.com\/wp-content\/uploads\/2013-05-21_2235-400x204.png 400w\" sizes=\"auto, (max-width: 493px) 100vw, 493px\" \/><\/p>\n<p>Tracking code for <strong>mydomain.com<\/strong>:<\/p>\n<p><code>&lt;script&gt;<br \/>\nvar _gaq = _gaq || [];<br \/>\n_gaq.push(['_setAccount', 'UA-12345-1']);<br \/>\n_gaq.push(['_setDomainName', 'midominio.com']);<br \/>\n_gaq.push(['_setAllowLinker', true]);<br \/>\n_gaq.push(['_trackPageview']);<br \/>\n&lt;\/script&gt;<\/code><\/p>\n<p>Tracking code for <strong>mydomain.com<\/strong>:<\/p>\n<p><code>&lt;script&gt;<br \/>\nvar _gaq = _gaq || [];<br \/>\n_gaq.push(['_setAccount', 'UA-12345-1']);<br \/>\n_gaq.push(['_setDomainName', 'midominio.es]);<br \/>\n_gaq.push(['_setAllowLinker', true]);<br \/>\n_gaq.push(['_trackPageview']);<br \/>\n&lt;\/script&gt;<\/code><\/p>\n<p>Tracking code for <strong>mydomain.fr<\/strong>:<\/p>\n<p><code>&lt;script&gt;<br \/>\nvar _gaq = _gaq || [];<br \/>\n_gaq.push(['_setAccount', 'UA-12345-1']);<br \/>\n_gaq.push(['_setDomainName', 'midominio.fr]);<br \/>\n_gaq.push(['_setAllowLinker', true]);<br \/>\n_gaq.push(['_trackPageview']);<br \/>\n&lt;\/script&gt;<\/code><\/p>\n<p>As can be seen in the tracking codes, in addition to the standard commands <code>_setAccount<\/code> and <code>_trackPageview<\/code> to record the visit we add two lines between them:<\/p>\n<ul>\n<li><code>_setDomainName<\/code>  with the name of the domain where the tracking code is located.<\/li>\n<li><code>_setAllowLinker<\/code>  with value <code>true<\/code> to allow data to pass between the top-level domains.<\/li>\n<\/ul>\n<h2>How to set up cross links between domains<\/h2>\n<p>In addition to including the <code>_setDomainName()<\/code> and <code>_setAllowLinker()<\/code> functions in the tracking code, we must use the <code>_link()<\/code> function in the links to keep Google Analytics cookie data between our domains using the HTTP GET method. To implement this, we only have to include the function <code>_link()<\/code> in the onlick event of the links that exist between our domains.<\/p>\n<p>For example, if we have the link <code>&lt;a href=\"\u201dhttp:\/\/www.midominio.es\u201d\"&gt;Castellano&lt;\/a&gt;<\/code> at www.midominio.com, we add the function <code>link() &lt;a onclick=\"\u201d_gaq.push([\u2018_link\u2019,\u2019http:\/\/www.midominio.es\u2019]);\" href=\"\u201dhttp:\/\/www.midominio.es\u201d\"&gt;Castellano&lt;\/a&gt;<\/code>.<\/p>\n<p><strong>Google Analytics tracking cookies<\/strong> are used to:<\/p>\n<ul>\n<li>Determine to which domain to attribute the visit<\/li>\n<li>Distinguish unique users<\/li>\n<li>Remember number and time since previous visit<\/li>\n<li>Remembering the traffic source and its related information<\/li>\n<li>Determines the start and end of the browsing session<\/li>\n<li>Remembering the value of custom variables<\/li>\n<\/ul>\n<p>Google Analytics&#8217; way of passing this data from one domain to another is through the HTTP GET method, so we will see that the <code>_link()<\/code> function adds the following parameters in the link destination URL:<\/p>\n<ul>\n<li><code>__utma<\/code>used to distinguish users and sessions<\/li>\n<li><code>__utmb<\/code>used to determine a new session or visit<\/li>\n<li><code>__utmc<\/code>is not used for the standard ga.js code, but to operate with urchin.js.<\/li>\n<li><code>__utmz<\/code>stores the traffic source or campaign through which the user has reached our site.<\/li>\n<li><code>__utmv<\/code>used to store custom variables, this cookie is created when you use the function  <code>_setCustomVar<\/code><\/li>\n<\/ul>\n<p>In addition to passing all this data, the <code>_link()<\/code> function will take care of changing the <code>document.location<\/code> and redirect the user to the destination URL of the link.<\/p>\n<p>This <strong>system is totally transparent to search engines<\/strong> since the Google robot will always follow the link included in the href of the link, but the user will execute the <em>onclick<\/em> when using the link. Therefore, we should not worry about the inclusion of the parameters when browsing our site, since they are not included in the href and are added via JavaScript, they will not be tracked.<\/p>\n<h2>Setting up Analytics to track multiple domains<\/h2>\n<p>When analyzing the data in Analytics, we will encounter the  <strong>problem<\/strong> that we will not be able to  <strong>distinguish which page corresponds to each of our domains<\/strong> (unless we cross the page dimension with the host dimension), so it is highly recommended to configure at least the following traffic profiles with their corresponding filters:<\/p>\n<ul>\n<li><strong>A profile for each of the domains<\/strong>: in this way we will be able to analyze the traffic separately for each of the domains of our site. We will therefore configure a filter for each of them to allow only traffic from the domain of each profile.<\/li>\n<li><strong>A global profile for our entire website<\/strong> in which, by means of an advanced filter, we will add the host name to the page name in order to differentiate them during data analysis<\/li>\n<li><strong>The default profile<\/strong>: this profile is already created since the account was created, when we create other profiles with filters we must keep it for security reasons.<\/li>\n<\/ul>\n<p>With this Analytics profile configuration we ensure that a user will be treated as a single user even if they browse between domains on our multi-domain website and that we will be able to analyze each of the domains separately.<\/p>\n<p><img loading=\"lazy\" class=\"aligncenter wp-image-17943 size-full\" src=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/HLCFormaci%C3%B3n-GoogleAnalytics728x90.png\" alt=\"Google Analytics online course\" width=\"728\" height=\"90\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>On websites where content is available in multiple languages, it is common to use multiple domains to&#8230;<\/p>\n","protected":false},"author":7,"featured_media":43711,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[337],"tags":[],"class_list":["post-52455","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-reporting"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to measure traffic on multidomain websites<\/title>\n<meta name=\"description\" content=\"The multi-domain architecture of some websites has special visitor tracking needs that can be configured in Analytics\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to measure traffic on multidomain websites\" \/>\n<meta property=\"og:description\" content=\"The multi-domain architecture of some websites has special visitor tracking needs that can be configured in Analytics\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites\" \/>\n<meta property=\"og:site_name\" content=\"Human Level\" \/>\n<meta property=\"article:published_time\" content=\"2013-05-23T05:59:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-16T16:17:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.humanlevel.com\/wp-content\/uploads\/multidominio-post.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"100\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jose Emeterio Vicente\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@vicentesabuco\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jose Emeterio Vicente\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites\"},\"author\":{\"name\":\"Jose Emeterio Vicente\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#\\\/schema\\\/person\\\/0054039a4ee43f8db760a3c06e790fe7\"},\"headline\":\"How to measure traffic on multidomain websites\",\"datePublished\":\"2013-05-23T05:59:02+00:00\",\"dateModified\":\"2023-10-16T16:17:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites\"},\"wordCount\":836,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/multidominio-post.jpg\",\"articleSection\":[\"Reporting\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites\",\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites\",\"name\":\"How to measure traffic on multidomain websites\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/multidominio-post.jpg\",\"datePublished\":\"2013-05-23T05:59:02+00:00\",\"dateModified\":\"2023-10-16T16:17:24+00:00\",\"description\":\"The multi-domain architecture of some websites has special visitor tracking needs that can be configured in Analytics\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#primaryimage\",\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/multidominio-post.jpg\",\"contentUrl\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/multidominio-post.jpg\",\"width\":\"150\",\"height\":\"100\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\\\/how-to-measure-traffic-on-multidomain-websites#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inicio\",\"item\":\"https:\\\/\\\/www.humanlevel.com\\\/en\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Reporting\",\"item\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/blog\\\/reporting\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to measure traffic on multidomain websites\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#website\",\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/en\",\"name\":\"Human Level\",\"description\":\"Web positioning and online marketing consultant Human Level\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.humanlevel.com\\\/en?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#organization\",\"name\":\"Human Level\",\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/en\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/logohl25x3.png\",\"contentUrl\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/logohl25x3.png\",\"width\":600,\"height\":93,\"caption\":\"Human Level\"},\"image\":{\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/human-level-communications\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/humanlevelcommunica\",\"https:\\\/\\\/bsky.app\\\/profile\\\/humanlevel.bsky.social\",\"https:\\\/\\\/instagram.com\\\/humanlevel\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/en#\\\/schema\\\/person\\\/0054039a4ee43f8db760a3c06e790fe7\",\"name\":\"Jose Emeterio Vicente\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/1x1-joseemeterio-vicente-26-96x96.jpg\",\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/1x1-joseemeterio-vicente-26-96x96.jpg\",\"contentUrl\":\"https:\\\/\\\/www.humanlevel.com\\\/wp-content\\\/uploads\\\/1x1-joseemeterio-vicente-26-96x96.jpg\",\"caption\":\"Jose Emeterio Vicente\"},\"description\":\"Head of R&D and SEO Consultant at Human Level. Computer Engineering graduate. SEO and Web Analytics expert, Google Analytics certified. Instructor for the Professional SEO-SEM Master\u2019s program at Kschool.\",\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/jose_emeterio_vicente\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/vicentesabuco\",\"https:\\\/\\\/x.com\\\/vicentesabuco\"],\"url\":\"https:\\\/\\\/www.humanlevel.com\\\/en\\\/author\\\/jose\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to measure traffic on multidomain websites","description":"The multi-domain architecture of some websites has special visitor tracking needs that can be configured in Analytics","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites","og_locale":"en_US","og_type":"article","og_title":"How to measure traffic on multidomain websites","og_description":"The multi-domain architecture of some websites has special visitor tracking needs that can be configured in Analytics","og_url":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites","og_site_name":"Human Level","article_published_time":"2013-05-23T05:59:02+00:00","article_modified_time":"2023-10-16T16:17:24+00:00","og_image":[{"width":150,"height":100,"url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/multidominio-post.jpg","type":"image\/jpeg"}],"author":"Jose Emeterio Vicente","twitter_card":"summary_large_image","twitter_creator":"@vicentesabuco","twitter_misc":{"Written by":"Jose Emeterio Vicente","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#article","isPartOf":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites"},"author":{"name":"Jose Emeterio Vicente","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/person\/0054039a4ee43f8db760a3c06e790fe7"},"headline":"How to measure traffic on multidomain websites","datePublished":"2013-05-23T05:59:02+00:00","dateModified":"2023-10-16T16:17:24+00:00","mainEntityOfPage":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites"},"wordCount":836,"commentCount":0,"publisher":{"@id":"https:\/\/www.humanlevel.com\/en#organization"},"image":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#primaryimage"},"thumbnailUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/multidominio-post.jpg","articleSection":["Reporting"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites","url":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites","name":"How to measure traffic on multidomain websites","isPartOf":{"@id":"https:\/\/www.humanlevel.com\/en#website"},"primaryImageOfPage":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#primaryimage"},"image":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#primaryimage"},"thumbnailUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/multidominio-post.jpg","datePublished":"2013-05-23T05:59:02+00:00","dateModified":"2023-10-16T16:17:24+00:00","description":"The multi-domain architecture of some websites has special visitor tracking needs that can be configured in Analytics","breadcrumb":{"@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#primaryimage","url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/multidominio-post.jpg","contentUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/multidominio-post.jpg","width":"150","height":"100"},{"@type":"BreadcrumbList","@id":"https:\/\/www.humanlevel.com\/en\/blog\/reporting\/how-to-measure-traffic-on-multidomain-websites#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inicio","item":"https:\/\/www.humanlevel.com\/en"},{"@type":"ListItem","position":2,"name":"Blog","item":"https:\/\/www.humanlevel.com\/en\/blog"},{"@type":"ListItem","position":3,"name":"Reporting","item":"https:\/\/www.humanlevel.com\/en\/blog\/reporting"},{"@type":"ListItem","position":4,"name":"How to measure traffic on multidomain websites"}]},{"@type":"WebSite","@id":"https:\/\/www.humanlevel.com\/en#website","url":"https:\/\/www.humanlevel.com\/en","name":"Human Level","description":"Web positioning and online marketing consultant Human Level","publisher":{"@id":"https:\/\/www.humanlevel.com\/en#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.humanlevel.com\/en?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.humanlevel.com\/en#organization","name":"Human Level","url":"https:\/\/www.humanlevel.com\/en","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/logo\/image\/","url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/logohl25x3.png","contentUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/logohl25x3.png","width":600,"height":93,"caption":"Human Level"},"image":{"@id":"https:\/\/www.humanlevel.com\/en#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/human-level-communications","https:\/\/www.youtube.com\/user\/humanlevelcommunica","https:\/\/bsky.app\/profile\/humanlevel.bsky.social","https:\/\/instagram.com\/humanlevel"]},{"@type":"Person","@id":"https:\/\/www.humanlevel.com\/en#\/schema\/person\/0054039a4ee43f8db760a3c06e790fe7","name":"Jose Emeterio Vicente","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/1x1-joseemeterio-vicente-26-96x96.jpg","url":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/1x1-joseemeterio-vicente-26-96x96.jpg","contentUrl":"https:\/\/www.humanlevel.com\/wp-content\/uploads\/1x1-joseemeterio-vicente-26-96x96.jpg","caption":"Jose Emeterio Vicente"},"description":"Head of R&D and SEO Consultant at Human Level. Computer Engineering graduate. SEO and Web Analytics expert, Google Analytics certified. Instructor for the Professional SEO-SEM Master\u2019s program at Kschool.","sameAs":["https:\/\/www.instagram.com\/jose_emeterio_vicente","https:\/\/www.linkedin.com\/in\/vicentesabuco","https:\/\/x.com\/vicentesabuco"],"url":"https:\/\/www.humanlevel.com\/en\/author\/jose"}]}},"_links":{"self":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts\/52455","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/comments?post=52455"}],"version-history":[{"count":1,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts\/52455\/revisions"}],"predecessor-version":[{"id":52974,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/posts\/52455\/revisions\/52974"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/media\/43711"}],"wp:attachment":[{"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/media?parent=52455"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/categories?post=52455"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.humanlevel.com\/en\/wp-json\/wp\/v2\/tags?post=52455"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}