Skip to content
Merged
Show file tree
Hide file tree
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

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vite-app/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>EP | Log Viewer</title>
<link rel="icon" href="/assets/favicon-BkAAWQga.png" />
<script type="module" crossorigin src="/assets/index-D3tKqxWU.js"></script>
<script type="module" crossorigin src="/assets/index-C81y9r9l.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-DpYZaoAr.css">
</head>
<body>
Expand Down
4 changes: 3 additions & 1 deletion vite-app/src/components/LogsSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ export const LogsSection = observer(({ rolloutId }: LogsSectionProps) => {
if (selectedLevel) {
params.append("level", selectedLevel);
}
params.append("limit", "50");

// max is 10,000 so I set it to 10,000: https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-search#operation-search-size
params.append("limit", "10000");

const fullUrl = `${apiUrl}/api/logs/${rolloutId}?${params}`;
console.log("Attempting to fetch logs from:", fullUrl);
Expand Down
Loading