Live data from Hacker News

Matomo: Open-source analytics platform

github.com

41–50 of 131 posts

Re: Matomo: Open-source analytics platform

#41
post #24

Installed it on some websites recently. Quite pleased with the UI and the functionality. Pretty spot on in terms of the right level of information about users - providing useful info without stalking people inappropriately. The new version (4.0) seems to improve on some earlier stability issues.

Is the performance better than Google Analytics?

Re: Matomo: Open-source analytics platform

#43

It's pretty easy to make your own analytics. It's not famous, but I open-sourced mine; it's called Bast, written mostly in Rust, and it's easy to deploy it. https://github.com/kooparse/bast

I did the same for my Go library [0], but I don't think it's "pretty easy" if you want to do it right. Especially filtering out bots is a constant hassle, it needs to be tested, maintained, just like any other software. So, paying something like $4 is worth it, if you don't want to think about it as much.

You have a very good looking UI there. I really love the simplicity.

[0] https://github.com/pirsch-analytics/pirsch

Re: Matomo: Open-source analytics platform

#44

Earlier quoted context omitted.

Due to the amount of people blocking Google Analytics with browser extensions, Pi-Holes and other tools I find GA increasingly lacking good analytics.

I assume most tools will block Matomo as well. I know uBlock origin with the default blocklist does.

This is why you self host it, to avoid a third party cookie.

Re: Matomo: Open-source analytics platform

#45
post #14

As a non-web developper, I always wondered: Are these alternatives fully able to replace Google analytics? I sort of thought Google analytics would tell you more about your visitors since with Google cookies, they could map them to other visited websites, centers of interest, age group, etc. Are you loosing all that when switching to a less intrusive analytics platform such as this, or is Google analytics not leverag…

Hey there, we are working on Pirsch [0] (another GA alternative).

If you can replace GA depends on your needs. GA collects more personal data, you get better insight of your audience. This is important if you do online marketing and like to see how well your campaigns perform. GA does track visitors across days and you can therefore see if someone came back after a week and made a purchase.

In case you don't do that or are simply not interested in specifics, all the alternatives are good enough right now, I think. You can still tell how visitors navigate your page, what content they visit most and all that stuff. We are currently thinking about what we can add to gain more insight for businesses, without invading privacy as Google does.

[0] https://pirsch.io/

Re: Matomo: Open-source analytics platform

#46
post #32

Earlier quoted context omitted.

Google Analytics tells you more about your audience because it stalks people across the web. Matomo can never provide that without having a broad range of websites from which you collect data and writing custom code to annotate visitors with your own interest tags. Matomo purely tracks analytics: who visited what page, for how long, from what device, from what location, from what inbound website, and what outbound li…

What information exactly does GA tell you from stalking people across the web? I don't think Google sharing with you accurate information about the people visiting other websites would be completely legal (GDPR). Where exactly do you find this information in the dashboard?

Even if they don't share it with you, they do it for themselves.

Re: Matomo: Open-source analytics platform

#47

I've tried to use it and... they could work on improving the installation guide. I gave up after an hour or so of failing to provision the database and create configuration in a way that gets me to the initial setup screen. I was using their docker setup for this. It's kind of my job to take random apps, deploy them and manage properly, so I'm not a clueless user here. I could press on and figure it out with more tim…

It was pretty easy to get up and running with Docker Compose:

  version: '3'

  services:
      mysql:
          image: mysql:8
          environment:
              MYSQL_ROOT_PASSWORD: root
              MYSQL_DATABASE: matomo
      matomo:
          image: matomo:4
          ports:
              - 4000:80
This lets me in at localhost:4000 and I just enter "mysql" as the DB host, "root" as the username & password and "matomo" as the database name, and it's basically done.

Of course, I probably have to point it out or someone else will, that it's a bad idea to be using the MySQL root user, instead of creating a user with the rights that Matomo needs: https://matomo.org/faq/how-to-install/faq_23484/

Re: Matomo: Open-source analytics platform

#48
post #41
post #24

Installed it on some websites recently. Quite pleased with the UI and the functionality. Pretty spot on in terms of the right level of information about users - providing useful info without stalking people inappropriately. The new version (4.0) seems to improve on some earlier stability issues.

Is the performance better than Google Analytics?

It is definitely clearly snappier, yes. There is some sub-second loading times, which should not be surprising, but not the sometimes multi-second lags I have seen in Google Analytics.

Re: Matomo: Open-source analytics platform

#50
post #49

29 euros a month for the managed, on-cloud version. Does anyone know inexpensive Google Analytics alternatives for small sites, that are hosted for you?

https://pirsch.io/

$4/month if you pay annually or $6 to pay monthly, but free during beta.

We are actively working on it right now, but the core is working well and is open-source: https://github.com/pirsch-analytics/pirsch

Post reply on HN