fix-6: raise ring display cap to 5000 (viewer + Entries clamp); viewer default limit 1000

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017CDMFpFx84pfviCTVuGGhf
This commit is contained in:
2026-07-12 10:21:34 +02:00
parent e030b8d9a9
commit 40498254c6
3 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -620,7 +620,7 @@ function toggleLogAutoRefresh() {
}
function refreshLogs(append) {
if (currentLogSource === 'agent') { refreshAgentLogs(); return; }
var url = '/api/debug/logs?level=' + currentLogLevel + '&limit=500';
var url = '/api/debug/logs?level=' + currentLogLevel + '&limit=1000';
if (append && lastLogTimestamp) url += '&after=' + encodeURIComponent(lastLogTimestamp);
fetch(url, {headers: csrfHeaders()}).then(function(r){return r.json()}).then(function(data) {
if (!data.ok) return;