Nice, idea for someone (I wish I had time)... "Good Housekeeping Seal" for Analytics - Self host analytics - Don't use google analytics - Don't use tracking pixels (FB, Reddit, etc) - etc "Good Housekeeping Seal" for Billing Practices (in same vein, a little off topic though) - Can cancel your subscription online - Sends reminders prior to charging card (dark pattern on some sites) - Open receipt API to scrape out hi…
> Can cancel your subscription online I think this is legally required in EU at least? I mean, if you started the subscription online. Same with the trial I believe.
We ditched Google Analytics
51–60 of 79 posts
Re: We ditched Google Analytics
#52Is anyone using an open source statistics system that's as simple as simple analytics? Maybe even something that can be setup to run stats for multiple clients from our own VPS?
However, while it does what it is intended to do, it needs further dev that I am too lazy to do.
Re: We ditched Google Analytics
#53Earlier quoted context omitted.
Because a lot of times things are hosted on services where you don't have access to raw log files (Netlify for example).
And in the Netlify example, they'll sell you analytics based on the logs (adblocker proof) for $9/month. For one case on a site I operate, the numbers are ~2x higher than GA.
Was great being able to spin the traffic figures on our game review site for PRs who didn't understand web analytics at that time.
Re: We ditched Google Analytics
#54Earlier quoted context omitted.
Freshlytics - https://github.com/sheshbabu/freshlytics * Cookies are not used * Personally identifiable information (PII) is not collected * See the pageview in different dimensions like page urls, referrers, browsers etc * Supports multiple projects * Supports RBAC Screenshots - https://github.com/sheshbabu/freshlytics/blob/master/docs/sc...
Looks useful, but it depends on PipelineDB, a PostgreSQL extension for streaming data. Unfortunately PipelineDB hasn't been updated since May 2019 [0] when they were acquired by Confluent [1]. The former PipelineDB team appears to be focused on Confluent's KSQL product [2]. There's an open source "ksqlDB" but it appears to depend on Kafka, so it's not a 1:1 replacement for PipelineDB[3]. [0] https://github.com/pipeli…
Most of the heavy lifting is done by Postgres/PipelineDB with Node.js as a simple wrapper so it's both performant and consumes less resources.
http://docs.pipelinedb.com/continuous-views.html
https://docs.timescale.com/latest/using-timescaledb/continuo...
Re: We ditched Google Analytics
#55Please let us know if you are looking for alternatives.
Re: We ditched Google Analytics
#56Question: If you don't use google analytics are you penalized in google SEO?
Re: We ditched Google Analytics
#57How private is using localStorage for ID persistence instead of cookies for Google Analytics - and in general? It's what I'm using, but obviously it takes an expert to figure out just how much of an improvement it is. Apparently Service Workers can also be used. https://developers.google.com/analytics/devguides/collection...
Re: We ditched Google Analytics
#58Call me old-fashioned, but if developers really want to minimize their impact on visitors, I wonder why they shifted away from using plain old log files. In the screenshot of the dashboard, "screen size" is the only attribute I see which can't be derived from a web server request log entry. I was using Analog to analyze Apache logs back in the 1990's -- it's older than JS.
- Page navigation often happens client-side (so most dynamic SPAs)
- Content is often cached and/or served from a CDN (so most non-trivial static sites)
In reality, nowadays most page loads don't ever touch the origin server, for a wide range of good reasons. Including analytics in the client-side page sidesteps that whole problem.
Re: We ditched Google Analytics
#59Earlier quoted context omitted.
This! Exactly this! The moment you start worrying about which posts/pages people looked at is the very moment you start getting sucked into the vortex that's called "pandering to the crowd". The extreme end of that is "clickbait content". Down that road I wish not to go!
Yes, there are much better ways of getting user feedback, for example a comments section.
Re: We ditched Google Analytics
#60How private is using localStorage for ID persistence instead of cookies for Google Analytics - and in general? It's what I'm using, but obviously it takes an expert to figure out just how much of an improvement it is. Apparently Service Workers can also be used. https://developers.google.com/analytics/devguides/collection...
Seems to me like LocalStorage in this case is just a way to get around people deleting/blocking cookies. What would be the legitimate use?