Adjust sparkline and screenshot timing

Sparklines:
- Poll interval: 2s -> 10s
- History size: 30 -> 180 readings
- Now shows 30 minutes of CPU history

Screenshots:
- Dashboard refresh interval: 15s -> 5s
- Combined with dirty tracking, updates on activity with 5s cap
This commit is contained in:
GitHub Copilot
2026-01-24 11:41:01 +00:00
parent 34aee378d9
commit 1ba4ce2a34
3 changed files with 87 additions and 28 deletions
+1 -1
View File
@@ -788,7 +788,7 @@ class LocalServer:
function startRefresh() {{
if (refreshTimer !== null) return;
refresh();
refreshTimer = setInterval(refresh, 15000);
refreshTimer = setInterval(refresh, 5000);
}}
function stopRefresh() {{
if (refreshTimer === null) return;