mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-11 20:14:42 +02:00
docs: mise à jour documentation monitoring + llama-server + réseau
- monitoring.md : refonte complète — architecture corrigée (ROCm via textfile_collector port 9100, plus de port 9101), dashboards Grafana (funk-k8s1, funk-inf1, funk-ai01) avec URLs directes et workflow GitOps, tableaux de règles d'alertes par catégorie, commandes admin Prometheus/AlertManager, structure fichiers annotée - llama_server.md : mis à jour Qwen3-8B (depuis Qwen2.5-14B), ajout des 3 instances systemd (GPU 1234 + CPU system 1236 + CPU monitor 1237), section Métriques Prometheus avec flag --metrics obligatoire et liste des métriques llamacpp réelles, performances mises à jour - reseau.md : ajout ports 9100 (node_exporter) et 9093 (alertmanager webhook) dans la table nftables, note sur l'ordre des règles (insert avant drop, pas add) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
630bdee1a2
commit
7db7aa2e9d
3 changed files with 358 additions and 123 deletions
|
|
@ -66,8 +66,15 @@ ansible-playbook -i inventory.yml playbooks/storage-01.yml --tags gateway
|
|||
| 6333, 6334 | TCP | 192.168.10.0/24 | Qdrant |
|
||||
| 8080 | TCP | 192.168.1.0/24, 192.168.10.0/24 | Hermes gateway |
|
||||
| 9000, 9001 | TCP | 192.168.10.0/24 | MinIO |
|
||||
| 9093 | TCP | 192.168.10.0/24 | AlertManager webhook (réception alertes Prometheus) |
|
||||
| 9100 | TCP | 192.168.10.0/24 | node_exporter (métriques Prometheus — inclut ROCm via textfile_collector) |
|
||||
| 9119 | TCP | 192.168.1.10 uniquement | Hermes dashboard |
|
||||
|
||||
> **Règle nftables importante** : les règles doivent être insérées **avant** la règle `drop` terminale.
|
||||
> Utiliser `nft insert rule inet filter input position <handle_avant_drop>` et non `nft add rule`
|
||||
> (qui ajoute en fin de chaîne, après le drop).
|
||||
> Vérifier l'ordre : `sudo nft -n -a list chain inet filter input`
|
||||
|
||||
### Forwarding
|
||||
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue