├── .env_dist ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── analytics.py ├── bot.py ├── docker-compose.yml ├── grafana_dashboard.json ├── repo_imgs └── grafana_explore.png └── requirements.txt /.env_dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/.env_dist -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/README.md -------------------------------------------------------------------------------- /analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/analytics.py -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/bot.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /grafana_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/grafana_dashboard.json -------------------------------------------------------------------------------- /repo_imgs/grafana_explore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MasterGroosha/telegram-stats-demo/HEAD/repo_imgs/grafana_explore.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiogram==2.11.2 2 | cachetools==4.1.1 3 | aioinflux==0.9.0 4 | --------------------------------------------------------------------------------