Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Automated cherry pick of #1346: feat: limit log max lines to 5000 #1348

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions shell/app/common/stores/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ const common = createStore({
newLines = oldLines;
emptyTimes += 1;
}
const LIMIT = 5000;
if (newLines.length > LIMIT) {
newLines = count > 0 ? newLines.slice(-LIMIT) : newLines.slice(0, LIMIT);
}
// 空的次数大于2次后,开始延长拉取周期,最长1分钟
if (emptyTimes > 2 && fetchPeriod < 60 * 1000) {
fetchPeriod += defaultLogPeriod;
Expand Down