The Cloudflare Workers implementation of an async Google Analytics
This project is based on Google Analytics Measurement Protocol, using Cloudflare Workers with a less than 1KB gzipped tiny cfga.min.js
to accelerate the Google Analytics, rather than a heavy (45KB gzipped) analytics.js
from Google.
Login into Cloudflare Dashboard and enter Workers
App. Create a new script, delete default code in the editor, and then copy the woker.js
content into the editor. After saving the workers script, do not forget to register a route for the scripts.
Now you can test your workers with a simple HTTP request. You should able to see 403 Forbidden
. Then you can deploy the scripts.
Just add those few lines of the code to your website, right before </body>
. Do not forget to replace the default configuration with your own!
<script>
window.ga_tid = "UA-XXXXX-Y"; // {String} The trackerID of your site.
window.ga_api = "https://example.com/xxx/"; // {String} The route of your cloudflare workers you just registered before.
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]" async></script>
Click the watch
button at the top of the repo and choose Releases Only
, so you can get notice of release update in time.
cfga.js
will send the data once the window's load
event is fired.
But you can still manually send the data again by calling window.cfga()
, just like the original analytics.js
with ga('send', 'pageview')
.
Recently cloudflare-workers-async-google-analytics
has been blocked by EasyList. Great Job though. So I am going to play a cat & mouse game now.
From 1.0.3
the random string will be added as a parameter to bypass EasyList. Also, this could help, too:
- Add the route
cfga/jquery.js
for your Cloudflare Workers. - Use setup as below:
window.ga_api = "https://example.com/cfga/jquery.js"; // {String} The route of your cloudflare workers you just registered before.
Block jquery.js
if you can, haha!
Currently, cloudflare-workers-async-google-analytics
and cfga.min.js
only support collect those types of data listed below. If you want to collect more, you should use Google Analytics official track code.
dl
: Document location URLuip
: User real IPua
: User Agentdt
: Document Titlede
: Document Encodingdr
: Document Referrerul
: User Languagesd
: Screen Colors Depthsr
: Screen Resolutionplt
: Page Load Timedns
: DNS Timepdt
: Page Downloaad Timerrt
: Redirect Response Timetcp
: TCP Connect Timesrt
: Server Response Timedit
: DOM Interactive Timeclt
: Content Load Time
cloudflare-workers-async-google-analytics
blocks those types of request by default:
- No
User-Agent
in request headers - No
Referer
in request headers - No Tracker ID given in request headers
- Use some other measurements from Cloudflare WAF
And if you want to restrict your workers only for your website, all you need to do is to edit a few lines of your workers:
- Launch Cloudflare Workers Editor again.
- You can see some commented out code at the first line like this:
//const AllowedReferrer = 'skk.moe';
- replace your domain with
skk.moe
, then remove//
.
Notice: set
AllowedReferrer
value toskk.moe
means all the subdomains ofskk.moe
will be allowed as well.
cloudflare-workers-async-google-analytics © Sukka, Released under the MIT License.
Authored and maintained by Sukka with help from contributors (list).
Personal Website · Blog · GitHub @SukkaW · Telegram Channel @SukkaChannel · Twitter @isukkaw · Keybase @sukka