Skip to content

Commit cd63b5d

Browse files
authored
fix: limit default SQL log entries to 100 (#3346)
Signed-off-by: yubiuser <github@yubiuser.dev>
1 parent 96fbee9 commit cd63b5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

assets/components/LogViewer/LogAnalytics.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import { Container } from "@/models/Container";
3232
import { type Table } from "@apache-arrow/esnext-esm";
3333
const { container } = defineProps<{ container: Container }>();
34-
const query = ref("SELECT * FROM logs");
34+
const query = ref("SELECT * FROM logs LIMIT 100");
3535
const error = ref<string | null>(null);
3636
const debouncedQuery = debouncedRef(query, 500);
3737
const evaluating = ref(false);

0 commit comments

Comments
 (0)