fix(webui): slow metrics chart refresh to 3s interval

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-29 10:32:35 +03:00
parent ada15ac777
commit 126af96780

View File

@@ -592,7 +592,7 @@ func (h *handler) handleAPIMetricsStream(w http.ResponseWriter, r *http.Request)
if !sseStart(w) {
return
}
ticker := time.NewTicker(time.Second)
ticker := time.NewTicker(3 * time.Second)
defer ticker.Stop()
for {
select {