- Archiver 131 .md dans docs/archive/root-md/ - Archiver 22 .json dans docs/archive/root-json/ - Conserver 7 .md utiles (README, CONTRIBUTING, CHANGELOG, etc.) - Conserver package.json, package-lock.json, turbo.json - Ajouter README d'index dans chaque archive
44 lines
1.5 KiB
Markdown
44 lines
1.5 KiB
Markdown
# ✅ STATUS FINAL - Configuration des Logs Veza
|
|
|
|
## 🎯 Objectif : COMPLET
|
|
|
|
Tous les logs sont enregistrés dans `/var/log/veza/` avec des fichiers séparés par module et par niveau d'erreur.
|
|
|
|
## 📁 Structure Complète (14 fichiers)
|
|
|
|
```
|
|
/var/log/veza/
|
|
├── backend-api.log ✅
|
|
├── backend-api-error.log ✅
|
|
├── frontend.log ✅
|
|
├── frontend-error.log ✅
|
|
├── chat.log ✅
|
|
├── chat-error.log ✅
|
|
├── stream.log ✅
|
|
├── stream-error.log ✅
|
|
├── db.log ✅
|
|
├── db-error.log ✅ (format: -error.log)
|
|
├── redis.log ✅
|
|
├── redis-error.log ✅
|
|
├── rabbitmq.log ✅
|
|
└── rabbitmq-error.log ✅
|
|
```
|
|
|
|
## ✅ Modules Configurés
|
|
|
|
1. **Backend API** → `backend-api.log` / `backend-api-error.log`
|
|
2. **Frontend** → `frontend.log` / `frontend-error.log`
|
|
3. **Chat Server** → `chat.log` / `chat-error.log`
|
|
4. **Stream Server** → `stream.log` / `stream-error.log`
|
|
5. **Database** → `db.log` / `db-error.log`
|
|
6. **Redis** → `redis.log` / `redis-error.log`
|
|
7. **RabbitMQ** → `rabbitmq.log` / `rabbitmq-error.log`
|
|
|
|
## 🔧 Format Standardisé
|
|
|
|
- **Fichier principal** : `module.log`
|
|
- **Fichier erreurs** : `module-error.log` (avec tiret `-`, pas de point `.`)
|
|
|
|
## ✅ Status : TOUT EST CONFIGURÉ
|
|
|
|
Les fichiers sont créés automatiquement au démarrage des services.
|