mirror of
https://github.com/Alkatrazz24/Funk-lab.git
synced 2026-07-08 09:04:42 +02:00
fix: monitoring — collecte métriques externes (nftables, llama --metrics, ROCm via 9100)
- nftables storage-01 : ports 9100 (node_exporter) + 9093 (webhook) ouverts pour 192.168.10.0/24 - llama-server : ajout --metrics pour exposer /metrics sur les 3 instances - values.yaml : suppression job gpu-01-rocm:9101 inexistant (ROCm passe par node_exporter 9100 textfile_collector) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
0cd45b7be9
commit
83c10feae7
3 changed files with 4 additions and 7 deletions
|
|
@ -32,6 +32,9 @@ table inet filter {
|
|||
# Services données (accès cluster uniquement)
|
||||
tcp dport { 5432, 6333, 6334, 9000, 9001 } ip saddr 192.168.10.0/24 accept
|
||||
|
||||
# Monitoring — node_exporter + alertmanager webhook (accès cluster)
|
||||
tcp dport { 9100, 9093 } ip saddr 192.168.10.0/24 accept
|
||||
|
||||
# Hermes gateway (accès LAN domestique + cluster)
|
||||
tcp dport 8080 ip saddr { 192.168.1.0/24, 192.168.10.0/24 } accept
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ ExecStart=/opt/llama.cpp/build/bin/llama-server \
|
|||
--embeddings \
|
||||
--pooling {{ llama_pooling }} \
|
||||
{% endif %}
|
||||
--metrics \
|
||||
--log-disable
|
||||
Restart=on-failure
|
||||
RestartSec=10
|
||||
|
|
|
|||
|
|
@ -63,13 +63,6 @@ prometheus:
|
|||
instance: gpu-01
|
||||
role: gpu
|
||||
|
||||
- job_name: gpu-01-rocm
|
||||
static_configs:
|
||||
- targets: ['192.168.10.20:9101']
|
||||
labels:
|
||||
instance: gpu-01
|
||||
role: gpu
|
||||
|
||||
- job_name: llama-server-gpu
|
||||
static_configs:
|
||||
- targets: ['192.168.10.20:1234']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue