mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-25 23:03:47 +01:00
240 lines
7.7 KiB
TypeScript
240 lines
7.7 KiB
TypeScript
import { ShallowRef, type Ref } from "vue";
|
|
|
|
import debounce from "lodash.debounce";
|
|
import {
|
|
type LogEvent,
|
|
type JSONObject,
|
|
LogEntry,
|
|
asLogEntry,
|
|
ContainerEventLogEntry,
|
|
ComplexLogEntry,
|
|
SkippedLogsEntry,
|
|
} from "@/models/LogEntry";
|
|
import { Service, Stack } from "@/models/Stack";
|
|
import { Container, GroupedContainers } from "@/models/Container";
|
|
|
|
const { isSearching, debouncedSearchFilter } = useSearchFilter();
|
|
|
|
function parseMessage(data: string): LogEntry<string | JSONObject> {
|
|
const e = JSON.parse(data) as LogEvent;
|
|
return asLogEntry(e);
|
|
}
|
|
|
|
export function useContainerStream(container: Ref<Container>): LogStreamSource {
|
|
const url = computed(() => `/api/hosts/${container.value.host}/containers/${container.value.id}/logs/stream`);
|
|
const loadMoreUrl = computed(() => `/api/hosts/${container.value.host}/containers/${container.value.id}/logs`);
|
|
return useLogStream(url, loadMoreUrl);
|
|
}
|
|
|
|
export function useHostStream(host: Ref<Host>): LogStreamSource {
|
|
return useLogStream(computed(() => `/api/hosts/${host.value.id}/logs/stream`));
|
|
}
|
|
|
|
export function useStackStream(stack: Ref<Stack>): LogStreamSource {
|
|
return useLogStream(computed(() => `/api/stacks/${stack.value.name}/logs/stream`));
|
|
}
|
|
|
|
export function useGroupedStream(group: Ref<GroupedContainers>): LogStreamSource {
|
|
return useLogStream(computed(() => `/api/groups/${group.value.name}/logs/stream`));
|
|
}
|
|
|
|
export function useMergedStream(containers: Ref<Container[]>): LogStreamSource {
|
|
const url = computed(() => {
|
|
const ids = containers.value.map((c) => c.id).join(",");
|
|
return `/api/hosts/${containers.value[0].host}/logs/mergedStream/${ids}`;
|
|
});
|
|
|
|
return useLogStream(url);
|
|
}
|
|
|
|
export function useServiceStream(service: Ref<Service>): LogStreamSource {
|
|
return useLogStream(computed(() => `/api/services/${service.value.name}/logs/stream`));
|
|
}
|
|
|
|
export type LogStreamSource = ReturnType<typeof useLogStream>;
|
|
|
|
function useLogStream(url: Ref<string>, loadMoreUrl?: Ref<string>) {
|
|
const messages: ShallowRef<LogEntry<string | JSONObject>[]> = shallowRef([]);
|
|
const buffer: ShallowRef<LogEntry<string | JSONObject>[]> = shallowRef([]);
|
|
const opened = ref(false);
|
|
const loading = ref(true);
|
|
const error = ref(false);
|
|
const { paused: scrollingPaused } = useScrollContext();
|
|
|
|
function flushNow() {
|
|
if (messages.value.length + buffer.value.length > config.maxLogs) {
|
|
if (scrollingPaused.value === true) {
|
|
if (messages.value.at(-1) instanceof SkippedLogsEntry) {
|
|
const lastEvent = messages.value.at(-1) as SkippedLogsEntry;
|
|
const lastItem = buffer.value.at(-1) as LogEntry<string | JSONObject>;
|
|
lastEvent.addSkippedEntries(buffer.value.length, lastItem);
|
|
} else {
|
|
const firstItem = buffer.value.at(0) as LogEntry<string | JSONObject>;
|
|
const lastItem = buffer.value.at(-1) as LogEntry<string | JSONObject>;
|
|
|
|
messages.value = [
|
|
...messages.value,
|
|
new SkippedLogsEntry(new Date(), buffer.value.length, firstItem, lastItem),
|
|
];
|
|
}
|
|
buffer.value = [];
|
|
} else {
|
|
if (buffer.value.length > config.maxLogs / 2) {
|
|
messages.value = buffer.value.slice(-config.maxLogs / 2);
|
|
} else {
|
|
messages.value = [...messages.value, ...buffer.value].slice(-config.maxLogs);
|
|
}
|
|
buffer.value = [];
|
|
}
|
|
} else {
|
|
if (messages.value.length == 0) {
|
|
// sort the buffer the very first time because of multiple logs in parallel
|
|
buffer.value.sort((a, b) => a.date.getTime() - b.date.getTime());
|
|
}
|
|
messages.value = [...messages.value, ...buffer.value];
|
|
buffer.value = [];
|
|
}
|
|
}
|
|
const flushBuffer = debounce(flushNow, 250, { maxWait: 1000 });
|
|
let es: EventSource | null = null;
|
|
|
|
function close() {
|
|
if (es) {
|
|
es.close();
|
|
es = null;
|
|
}
|
|
}
|
|
|
|
function clearMessages() {
|
|
flushBuffer.cancel();
|
|
messages.value = [];
|
|
buffer.value = [];
|
|
}
|
|
|
|
const { streamConfig, hasComplexLogs, levels } = useLoggingContext();
|
|
|
|
const params = computed(() => {
|
|
const params = new URLSearchParams();
|
|
if (streamConfig.value.stdout) params.append("stdout", "1");
|
|
if (streamConfig.value.stderr) params.append("stderr", "1");
|
|
if (isSearching.value) params.append("filter", debouncedSearchFilter.value);
|
|
for (const level of levels.value) {
|
|
params.append("levels", level);
|
|
}
|
|
return params;
|
|
});
|
|
|
|
const urlWithParams = computed(() => withBase(`${url.value}?${params.value.toString()}`));
|
|
|
|
function connect({ clear } = { clear: true }) {
|
|
close();
|
|
if (clear) clearMessages();
|
|
opened.value = false;
|
|
loading.value = true;
|
|
error.value = false;
|
|
es = new EventSource(urlWithParams.value);
|
|
es.addEventListener("container-event", (e) => {
|
|
const event = JSON.parse((e as MessageEvent).data) as {
|
|
actorId: string;
|
|
name: "container-stopped" | "container-started";
|
|
time: string;
|
|
};
|
|
const containerEvent = new ContainerEventLogEntry(
|
|
event.name == "container-started" ? "Container started" : "Container stopped",
|
|
event.actorId,
|
|
new Date(event.time),
|
|
event.name,
|
|
);
|
|
|
|
buffer.value = [...buffer.value, containerEvent];
|
|
flushBuffer();
|
|
flushBuffer.flush();
|
|
});
|
|
|
|
es.addEventListener("logs-backfill", (e) => {
|
|
const data = JSON.parse((e as MessageEvent).data) as LogEvent[];
|
|
const logs = data.map((e) => asLogEntry(e));
|
|
messages.value = [...logs, ...messages.value];
|
|
});
|
|
|
|
es.onmessage = (e) => {
|
|
if (e.data) {
|
|
buffer.value = [...buffer.value, parseMessage(e.data)];
|
|
flushBuffer();
|
|
}
|
|
};
|
|
es.onerror = () => {
|
|
error.value = true;
|
|
};
|
|
es.onopen = () => {
|
|
loading.value = false;
|
|
opened.value = true;
|
|
error.value = false;
|
|
};
|
|
}
|
|
|
|
watch(urlWithParams, () => connect(), { immediate: true });
|
|
|
|
const isLoadingMore = ref(false);
|
|
|
|
async function loadOlderLogs() {
|
|
if (!loadMoreUrl) return;
|
|
if (isLoadingMore.value) return;
|
|
|
|
const to = messages.value[0].date;
|
|
const lastSeenId = messages.value[0].id;
|
|
const last = messages.value[Math.min(messages.value.length - 1, 300)].date;
|
|
const delta = to.getTime() - last.getTime();
|
|
const from = new Date(to.getTime() + delta);
|
|
|
|
const abortController = new AbortController();
|
|
const signal = abortController.signal;
|
|
isLoadingMore.value = true;
|
|
try {
|
|
const urlWithMoreParams = computed(() => {
|
|
const loadMoreParams = new URLSearchParams(params.value);
|
|
loadMoreParams.append("from", from.toISOString());
|
|
loadMoreParams.append("to", to.toISOString());
|
|
loadMoreParams.append("minimum", "100");
|
|
loadMoreParams.append("lastSeenId", String(lastSeenId));
|
|
|
|
return withBase(`${loadMoreUrl.value}?${loadMoreParams.toString()}`);
|
|
});
|
|
const stopWatcher = watchOnce(urlWithMoreParams, () => abortController.abort("stream changed"));
|
|
const logs = await (await fetch(urlWithMoreParams.value, { signal })).text();
|
|
stopWatcher();
|
|
|
|
if (logs && signal.aborted === false) {
|
|
const newMessages = logs
|
|
.trim()
|
|
.split("\n")
|
|
.map((line) => parseMessage(line));
|
|
messages.value = [...newMessages, ...messages.value];
|
|
}
|
|
} catch (e) {
|
|
console.error("Error loading older logs", e);
|
|
} finally {
|
|
isLoadingMore.value = false;
|
|
}
|
|
}
|
|
|
|
onScopeDispose(() => close());
|
|
|
|
watch(messages, () => {
|
|
if (messages.value.length > 1) {
|
|
hasComplexLogs.value = messages.value.some((m) => m instanceof ComplexLogEntry);
|
|
}
|
|
});
|
|
|
|
return {
|
|
messages,
|
|
loadOlderLogs,
|
|
isLoadingMore,
|
|
hasComplexLogs,
|
|
opened,
|
|
error,
|
|
loading,
|
|
eventSourceURL: urlWithParams,
|
|
};
|
|
}
|