Urchin (the software that became Google Analytics) was a log parsing analytical tool. https://en.wikipedia.org/wiki/Urchin_(software)
Show HN: I replaced Google Analytics with simple log-based analytics
81–90 of 143 posts
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#82I’m not sure why anyone would want to waste time with this.
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#83Earlier quoted context omitted.
The real power of Google Analytics is not in the tracking code, it's with the front-end interface that any non-technical product manager or marketer can use. Tracking users is easy. Allowing non-technical folks with easy-to-use analysis tools is much harder.
The ever changing google analytics dashboard is not that easy to use for non technical folks. And then there's the whole "data analysis" thing.
I've researched building out a desktop app that pulls GA data over the API in the background so you can get key stats out much quicker, but it's quite an investment of time to be beholden to Google's platform.
Now doing some dogfooding on a web analytics service I've been evolving that tries to answer the "why" of change in traffic/behaviour over time ("traffic's up today....not sure why?"). Google do this with their GA mobile app ("Insights") but what and when they show you don't seem to be too predictable.
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#84This looks like a solution in need of a problem. Previously I had tried some similar things at scale, mainly because I wanted upsampled reports and GA charges $100,000 for premium services. What I found is that raw logs are not reliably accurate. The volume of traffic in certain countries was accurate but not reliably “real” users even after accounting for known bots, search engines etc. GA has a way of accounting fo…
Another fun fact. Since the tracking happens on the client side, there's potentially a ton of truncated data that GA simply misses. Backend server instruments don't suffer the same way.
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#85Re: Show HN: I replaced Google Analytics with simple log-based analytics
#86Love what you are doing here. A few points: 1. I would rename the pixel.png to something like image.png. Never call your script anything like tracking, analytics, or pixel when you don't want to be blocked by ad blockers. We use hello.js and hello.gif. [1] > Log file parsing is an old-skool but effective way of measuring the traffic to your site. 2. By using a pixel image you can bypass caching. When using server log…
> Never call your script anything like tracking, analytics, or pixel when you don't want to be blocked by ad blockers. But this is a tracking script, no? If I were you I'd keep the name that way so that if people don't want to be tracked, they don't.
How do you deal with this sort of tracking?
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#87Earlier quoted context omitted.
> Never call your script anything like tracking, analytics, or pixel when you don't want to be blocked by ad blockers. But this is a tracking script, no? If I were you I'd keep the name that way so that if people don't want to be tracked, they don't.
If your business is to track people, yes. If it's to gather statistics without tracking people (like page views), I think it perfectly fine to bypass ad blockers. We even have a dedicated feature for bypassing ad blockers [1] because we think page views are not privacy invasive. We drop IP addresses from every request so there is no personal data in our database or logs. If you really want to block you can enable the…
Thanks for letting me know to block hello.js and hello.gif.
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#88Love what you are doing here. A few points: 1. I would rename the pixel.png to something like image.png. Never call your script anything like tracking, analytics, or pixel when you don't want to be blocked by ad blockers. We use hello.js and hello.gif. [1] > Log file parsing is an old-skool but effective way of measuring the traffic to your site. 2. By using a pixel image you can bypass caching. When using server log…
> Never call your script anything like tracking, analytics, or pixel when you don't want to be blocked by ad blockers. But this is a tracking script, no? If I were you I'd keep the name that way so that if people don't want to be tracked, they don't.
Re: Show HN: I replaced Google Analytics with simple log-based analytics
#89Re: Show HN: I replaced Google Analytics with simple log-based analytics
#90Cloudflare provides all the basic analytics I need and I can parse the log files in the command line if I need more.