88 lines
2.7 KiB
Markdown
88 lines
2.7 KiB
Markdown
---
|
|
title: Countly
|
|
created: 2026-06-08
|
|
updated: 2026-06-08
|
|
type: app
|
|
tags: [catalogue, analytics, app-marathon3-final-context]
|
|
confidence: high
|
|
contested: false
|
|
sources: [https://selfh.st/apps/?tag=Analytics&app=countly]
|
|
---
|
|
|
|
# 📊 Countly
|
|
|
|
> **Countly** : Analytics mobile + web self-hosted : events, funnels, retention, crash reports, push notifications, user profiles.
|
|
|
|
## 📋 Informations Générales
|
|
|
|
| Champ | Valeur |
|
|
| :--- | :--- |
|
|
| **Site web** | [https://countly.com](https://countly.com) |
|
|
| **GitHub** | [Countly/countly-server](https://github.com/Countly/countly-server) |
|
|
| **License** | AGPL-3.0 (community) |
|
|
| **Langage** | JavaScript |
|
|
| **Catégorie** | [[cat-analytics|Analytics]] |
|
|
|
|
## 📝 Description
|
|
|
|
**Countly** est analytics mobile + web self-hosted : events, funnels, retention, crash reports, push notifications, user profiles.
|
|
|
|
Différence avec les alternatives majeures : positionnement auto-hébergé et open source, sans tracking, sans dépendance cloud propriétaire.
|
|
|
|
Pour qui : utilisateurs qui cherchent une alternative souveraine à des solutions SaaS propriétaires du même segment.
|
|
|
|
## 🚀 Installation
|
|
|
|
### Docker Compose (recommandé)
|
|
|
|
```yaml
|
|
version: '3.8'
|
|
services:
|
|
countly:
|
|
image: ghcr.io/Countly/countly-server:latest
|
|
container_name: countly
|
|
restart: unless-stopped
|
|
environment:
|
|
- TZ=Europe/Paris
|
|
volumes:
|
|
- ./data:/app/data
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.countly.rule=Host(`countly.example.com`)"
|
|
- "traefik.http.routers.countly.entrypoints=websecure"
|
|
- "traefik.http.routers.countly.tls.certresolver=letsencrypt"
|
|
networks:
|
|
- proxy
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
```
|
|
|
|
## 🔄 Alternatives
|
|
|
|
### Open Source
|
|
- [[app-posthog]], [[app-matomo]], [[app-plausible]] — alternatives dans le même segment
|
|
|
|
### Propriétaires (ce que Countly remplace)
|
|
- **Mixpanel, Amplitude, Google Analytics** — solutions SaaS du même domaine
|
|
|
|
## 🔐 Sécurité
|
|
|
|
- **Authentification** : vérifier la configuration par défaut (changer les credentials initiaux)
|
|
- **Exposition réseau** : derrière Traefik + TLS (Let's Encrypt) recommandé
|
|
- **Backups** : sauvegarder `./data` régulièrement
|
|
- **Mises à jour** : surveiller les releases GitHub pour patches de sécurité
|
|
|
|
## 📚 Ressources
|
|
|
|
- [GitHub https://github.com/Countly/countly-server](https://github.com/Countly/countly-server)
|
|
- [Site officiel](https://countly.com)
|
|
- [selfh.st/apps](https://selfh.st/apps/?tag=Analytics&app=countly)
|
|
|
|
## Pages Liées
|
|
- [[cat-analytics|Analytics]] — Catégorie Analytics
|
|
- [[recettes-docker-compose]] — Templates Docker
|
|
- [[securisation-home-lab]] — Sécurité
|
|
- [[glossaire-homelab]] — Vocabulaire
|