Reputation: 1
Is it possible in Google Analytics to see how much traffic your site sends to another site, if you don't have Google Analytics access to the other site?
If not, what would it require?
Many thanks, Claus
Upvotes: 0
Views: 462
Reputation: 434
You could execute a function to deliver that specific information to Google via the event function. For example, this function:
function setAnalytic() {
ga('send', {
hitType: 'event',
eventCategory: 'External_Link',
eventAction: 'User_Click',
eventLabel: 'Redirect to XYZ'
});
}
Would result in seeing the following in the events section of your analytics results:
See this page for delivering event information to Google Analytics:
Upvotes: 1
Reputation: 245
You'd be best off setting up an event when the user clicks on your link to the other website.
Upvotes: 1