Some of you will no doubt be familiar with Google Analytics or Matomo (formerly Piwik). They all have one thing in common: they collect data about users.
These statistics are very useful if you want to view the behavior of users on your own site and improve your site accordingly. You can no longer do without them if you want to understand your target group. Of course, you don't want to track your own page views.
Umami has set itself the goal of breaking the dependency on cloud solutions and wants to be a self-hosted alternative. You can find out exactly how this works with Umami and how to set up Umami in my article here.
Umami tracks my own views ❓
I also had to sadly experience that Umami also tracks my own views and thus falsifies the statistics, sometimes significantly. This is stupid, nobody wants it and nobody likes it.
Unfortunately, there is hardly any documentation on this and I first tried to dynamically add the tracking script using the referer information in the JavaScript. But that's code that needs to be maintained (albeit not much). I don't want that.

Unfortunately, the documentation is quite weak in this respect and didn't offer anything you might need.
The solution 💡
But after hours of searching in various forums and a lot of research, a GitHub issue appeared where the supposed solution was described:
The solution is simple, but not intuitive. Simply set the entry umami.disabled with the value true in the localStorage in the browser (for the website) and Umami will no longer be tracked in the browser.
Why your own views skew statistics
Especially with smaller blogs or new projects, your own page views can make up a significant share of total traffic. When you view an article multiple times while writing, check the formatting, and review it again after publishing, you can easily rack up 20-30 views that have nothing to do with actual visitor interest.
Umami is a great privacy-friendly alternative to Google Analytics. It doesn't store personal data, doesn't set cookies, and is fully GDPR compliant. The self-hosting option also gives you full control over your data.
More Umami tips
In addition to hiding your own views, Umami also offers the ability to track custom events. For example, you can measure how often certain buttons are clicked or how far visitors scroll on a page – all without cookies and privacy-compliant.
Further reading
If you enjoyed this article, you might also find these interesting:
Discover more articles
Understanding and using REST APIs
You may have seen or heard that modern applications use REST APIs. I'll show you whats behind that 🤔
Automatically archive GitHub repos
Automatically archive your repos when they are outdated? I will show you how you can do it 🔥
Logging in Angular: A Powerful Tool for Debugging and Monitoring 🕵️
Logging in Angular is essential. From TypeScript decorators to structured LoggerServices – here's how to debug efficiently.
Angular and TailwindCSS: Utility-First CSS Meets Components 🎨
Angular and TailwindCSS are a powerful duo. Here's how to set up Tailwind in your Angular project and use utility-first CSS effectively.
Connecting Custom Forms to Google Spreadsheets with Apps Script 📊
Turn any Google Spreadsheet into a free form backend with Google Apps Script – no server needed, with TypeScript type safety and CORS solutions.
Angular input() for Route Parameters: Ditch ActivatedRoute for Good 🚀
Angular 16+ lets you bind route parameters directly via input() – no more ActivatedRoute boilerplate. Here’s how!