

I used umami cloud (free tier) on my personal site for 6-12 months and can recommend it. I ultimately decided to switch to just a simple counter for visits and likes because that’s all i care about and i don’t like collecting more information than i “need”. Now my website has no other tracking/analytics and the entire site still works even if Javascript is disabled.
For a business if you’re wanting a Google analytics alternative then umami does a great job. Self hosted option available as well.
To your initial question, if you’d actually use the data then i would recommend some form of privacy respecting analytics on your business site though. Since you seem privacy conscious i just wouldn’t put more analytics on your website than you’d personally be ok with as an end user



In your docker-compose.yaml you need to add in your directory if you haven’t already
services: immich-server: volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro + # Add NAS pictures and videos folders to use as External Libraries + - "/volume1/data/ Pictures:/usr/src/app/library/pictures"Then in immich you need to add this as an external library. Click your profile icon -> administration -> external library -> create library. It will ask for a path and you need to use the library mount point within docker which was
/usr/src/app/library/picturesfrom my example. Click add pathThat should get you good to go