mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
74 lines
1.8 KiB
Vue
74 lines
1.8 KiB
Vue
<template>
|
|
<div class="flex gap-4">
|
|
<StatMonitor :data="memoryData" label="mem" :stat-value="formatBytes(totalStat.memoryUsage)" />
|
|
<StatMonitor :data="cpuData" label="load" :stat-value="Math.max(0, totalStat.cpu).toFixed(2) + '%'" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Stat } from "@/models/Container";
|
|
import { Container } from "@/models/Container";
|
|
|
|
const { containers } = defineProps<{
|
|
containers: Container[];
|
|
}>();
|
|
|
|
const totalStat = ref<Stat>({ cpu: 0, memory: 0, memoryUsage: 0 });
|
|
const { history, reset } = useSimpleRefHistory(totalStat, { capacity: 300 });
|
|
|
|
watch(
|
|
() => containers,
|
|
() => {
|
|
const initial: Stat[] = [];
|
|
for (let i = 1; i <= 300; i++) {
|
|
const stat = containers.reduce(
|
|
(acc, { statsHistory }) => {
|
|
const item = statsHistory.at(-i);
|
|
if (!item) {
|
|
return acc;
|
|
}
|
|
return {
|
|
cpu: acc.cpu + item.cpu,
|
|
memory: acc.memory + item.memory,
|
|
memoryUsage: acc.memoryUsage + item.memoryUsage,
|
|
};
|
|
},
|
|
{ cpu: 0, memory: 0, memoryUsage: 0 },
|
|
);
|
|
initial.push(stat);
|
|
}
|
|
reset({ initial });
|
|
},
|
|
{ immediate: true },
|
|
);
|
|
|
|
useIntervalFn(() => {
|
|
totalStat.value = containers.reduce(
|
|
(acc, { stat }) => {
|
|
return {
|
|
cpu: acc.cpu + stat.cpu,
|
|
memory: acc.memory + stat.memory,
|
|
memoryUsage: acc.memoryUsage + stat.memoryUsage,
|
|
};
|
|
},
|
|
{ cpu: 0, memory: 0, memoryUsage: 0 },
|
|
);
|
|
}, 1000);
|
|
|
|
const cpuData = computed(() =>
|
|
history.value.map((stat, i) => ({
|
|
x: i,
|
|
y: Math.max(0, stat.cpu),
|
|
value: Math.max(0, stat.cpu).toFixed(2) + "%",
|
|
})),
|
|
);
|
|
|
|
const memoryData = computed(() =>
|
|
history.value.map((stat, i) => ({
|
|
x: i,
|
|
y: stat.memoryUsage,
|
|
value: formatBytes(stat.memoryUsage),
|
|
})),
|
|
);
|
|
</script>
|