Google released the new Analytics.js
(https://developers.google.com/analytics/devguides/collection/analyticsjs/). I would like to use it, and I already have everyting set up just fine, apart from site speed.
In the "old" ga.js
you could do this with
_gaq.push(['_setSiteSpeedSampleRate', 50]);
This would set it so 50% of the visitors would report sitespeed to analytics.
However, for the new analytics.js
I cannot get it to work. I tried the following 2:
ga('send','setSiteSpeedSampleRate',50);
ga('setSiteSpeedSampleRate',50);
But no results. Any ideas?