A simple visitor statistics system based on Golang + Redis
- Calculate the UV and PV of the website
- Calculate the UV and PV of the subpage
- One-click deployment using Docker
- Privacy protection only stores HASH
- Pjax compatible webpage
- Support migration from the original busuanzi
Support multiple running methods: compile and run from source code, run with Docker. See Install for details
- Edit the
docker-compose.yaml
file with your own configuration. - Run
docker-compose up -d
to start the service. - Visit
http://localhost:8080
to view the data.
Supports multiple custom attributes, compatible with pjax web pages, supports custom tag prefixes. See: Usage documentation
Busuanzi
uses Redis for data storage and retrieval. Redis, as an in-memory database, has extremely high read and write performance. At the same time, its unique RDB and AOF persistence mechanisms ensure the security of Redis data.
UV and PV data are stored in the following keys:
index | Types | key |
---|---|---|
sitePv | String | bsz:site_pv:md5(host) |
siteUv | HyperLogLog | bsz:site_uv:md5(host) |
pagePv | ZSet | bsz:page_pv:md5(host) / md5(path) |
pageUv | HyperLogLog | bsz:site_uv:md5(host):md5(path) |
- You can use the busuanzi-sync tool to sync data from the original busuanzi to the self-hosted busuanzi.
Logo created by ChatGPT
- Please be sure to back up your data (dump.rdb) before upgrading.
- New and old version data may not be compatible, please pay attention to the instructions on the Release interface, upgrade cautiously
- 2.5.x - 2.7.x can use the bsz-transfer tool to migrate data to 2.8.x.