We have a large number of websites (>50) which we wish to track using analytics software. We also wish to track the total number of visits across all sites from one console.
I have done some research, and the supported way to do this by google is to install one 'msater' tracking profile, and use filters to create child profiles on each domain. However, this does not allow more than 49 different sites to be created due to the 50 site maximum, which means that having about 300 sites would result in 6 'master' profiles, which then need to be manually combined.
I have also tried multiple profiles per site using custom variables, e.g.
var _gaq = _gaq || [];
_gaq.push(['t1._setAccount', 'UA-xxx-01']);
_gaq.push(['t1._setAllowLinker', true]);
_gaq.push(['t1._trackPageview']);
var _gaq = _gaq || [];
_gaq.push(['t2._setAccount', 'UA-xxx-02']);
_gaq.push(['t2._setAllowLinker', true]);
_gaq.push(['t2._trackPageview']);
However I read that this may result in the data not properly being recorded, and seems to be strongly disproved of by Google.
Is there a simple way to combine multiple profiles? If possible, i'd rather stick with Google, and we're under a tight budget so can't afford the google analytics tools available.