From af1a3bf386bd6bd6200d3d14a42ef487132b58b0 Mon Sep 17 00:00:00 2001 From: duffyduck Date: Sat, 19 Sep 2026 11:46:51 +0200 Subject: [PATCH] feat(diagnostic): Link von LLM-Einstellungen zur Compute-Flotte (Auslastung) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Unter der LLM-Boxen-Liste in Modelle & KI jetzt ein Link "Auslastung & Details in der Compute-Flotte", der zum Satelliten-Tab wechselt und zur Compute-Flotte scrollt — dort sitzt der Auslastung-Button pro Node (Live nvidia-smi + GPU-/Token-Graphen). Anker #compute-fleet + gotoComputeFleet(). Co-Authored-By: Claude Opus 4.8 --- diagnostic/index.html | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/diagnostic/index.html b/diagnostic/index.html index 8b4613d..cc1e46e 100644 --- a/diagnostic/index.html +++ b/diagnostic/index.html @@ -1397,7 +1397,7 @@
(Lade...)
-
+

Compute-Flotte 🖥️

@@ -4386,6 +4386,17 @@ }).join(''); } + // Sprung von den Einstellungen zur Compute-Flotte (dort sitzt der + // Auslastung-Button pro Node → Live nvidia-smi + Graphen). + function gotoComputeFleet() { + switchMainTab('satellites'); + requestWorkers(); + setTimeout(() => { + const el = document.getElementById('compute-fleet'); + if (el) el.scrollIntoView({ behavior: 'smooth', block: 'start' }); + }, 60); + } + // ── Auslastungs-Monitor (Stage E) ─────────────────────── let _nodeStatsTarget = ''; function openNodeStats(instanceId, node) { @@ -7045,7 +7056,8 @@ '' + escapeHtml(models) + '' + '
'; }).join(''); - }).join(''); + }).join('') + + '
Auslastung & Details in der Compute-Flotte →
'; } async function loadLocalLlmConfig() { try {