2023-12-08 16:33:22 +03:00
|
|
|
import Heading from "@/components/ui/heading";
|
2024-01-25 00:20:16 +03:00
|
|
|
import useSWR from "swr";
|
|
|
|
|
import { FrigateStats } from "@/types/stats";
|
2024-01-26 19:51:01 +03:00
|
|
|
import { useEffect, useMemo, useState } from "react";
|
2024-01-25 00:20:16 +03:00
|
|
|
import SystemGraph from "@/components/graph/SystemGraph";
|
2024-01-26 19:51:01 +03:00
|
|
|
import { useFrigateStats } from "@/api/ws";
|
|
|
|
|
import TimeAgo from "@/components/dynamic/TimeAgo";
|
2023-12-08 16:33:22 +03:00
|
|
|
|
|
|
|
|
function System() {
|
2024-01-25 00:20:16 +03:00
|
|
|
// stats
|
2024-01-26 19:51:01 +03:00
|
|
|
const { data: initialStats } = useSWR<FrigateStats[]>("stats/history", {
|
2024-01-25 00:20:16 +03:00
|
|
|
revalidateOnFocus: false,
|
|
|
|
|
});
|
2024-01-26 19:51:01 +03:00
|
|
|
const { payload: updatedStats } = useFrigateStats();
|
|
|
|
|
const [statsHistory, setStatsHistory] = useState<FrigateStats[]>(
|
|
|
|
|
initialStats || []
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const lastUpdated = useMemo(() => {
|
|
|
|
|
if (updatedStats) {
|
|
|
|
|
return updatedStats.service.last_updated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (initialStats) {
|
|
|
|
|
return initialStats.at(-1)?.service?.last_updated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
|
}, [initialStats, updatedStats]);
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
if (initialStats == undefined) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (statsHistory.length < initialStats.length) {
|
|
|
|
|
setStatsHistory(initialStats);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setStatsHistory([...statsHistory, updatedStats]);
|
|
|
|
|
}, [initialStats, updatedStats]);
|
2024-01-25 00:20:16 +03:00
|
|
|
|
|
|
|
|
// stats data pieces
|
2024-01-25 02:53:32 +03:00
|
|
|
const detInferenceTimeSeries = useMemo(() => {
|
2024-01-25 00:20:16 +03:00
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
|
|
|
|
|
|
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
|
|
|
|
Object.entries(stats.detectors).forEach(([key, stats]) => {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: `${key} (${stats.pid})`, data: [] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series[key].data.push({ x: statTime, y: stats.inference_speed });
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.values(series);
|
|
|
|
|
}, [statsHistory]);
|
2024-01-25 02:53:32 +03:00
|
|
|
const detCpuSeries = useMemo(() => {
|
2024-01-25 00:20:16 +03:00
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
|
|
|
|
|
|
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
2024-01-25 02:53:32 +03:00
|
|
|
Object.entries(stats.detectors).forEach(([key, detStats]) => {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: key, data: [] };
|
2024-01-25 00:20:16 +03:00
|
|
|
}
|
|
|
|
|
|
2024-01-25 02:53:32 +03:00
|
|
|
series[key].data.push({
|
|
|
|
|
x: statTime,
|
|
|
|
|
y: stats.cpu_usages[detStats.pid.toString()].cpu,
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.values(series);
|
|
|
|
|
}, [statsHistory]);
|
|
|
|
|
const detMemSeries = useMemo(() => {
|
|
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
2024-01-25 00:20:16 +03:00
|
|
|
|
2024-01-25 02:53:32 +03:00
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
2024-01-25 00:20:16 +03:00
|
|
|
|
2024-01-25 02:53:32 +03:00
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
|
|
|
|
Object.entries(stats.detectors).forEach(([key, detStats]) => {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: key, data: [] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series[key].data.push({
|
|
|
|
|
x: statTime,
|
|
|
|
|
y: stats.cpu_usages[detStats.pid.toString()].mem,
|
|
|
|
|
});
|
2024-01-25 00:20:16 +03:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.values(series);
|
|
|
|
|
}, [statsHistory]);
|
|
|
|
|
const gpuSeries = useMemo(() => {
|
|
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
|
|
|
|
|
|
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
|
|
|
|
Object.entries(stats.gpu_usages || []).forEach(([key, stats]) => {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: key, data: [] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series[key].data.push({ x: statTime, y: stats.gpu });
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.keys(series).length > 0 ? Object.values(series) : [];
|
|
|
|
|
}, [statsHistory]);
|
|
|
|
|
const gpuMemSeries = useMemo(() => {
|
|
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
|
|
|
|
|
|
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
|
|
|
|
Object.entries(stats.gpu_usages || {}).forEach(([key, stats]) => {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: key, data: [] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series[key].data.push({ x: statTime, y: stats.mem });
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.values(series);
|
|
|
|
|
}, [statsHistory]);
|
|
|
|
|
const otherProcessCpuSeries = useMemo(() => {
|
|
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
|
|
|
|
|
|
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
|
|
|
|
Object.entries(stats.processes).forEach(([key, procStats]) => {
|
|
|
|
|
if (procStats.pid.toString() in stats.cpu_usages) {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: `${key} (${procStats.pid})`, data: [] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series[key].data.push({
|
|
|
|
|
x: statTime,
|
|
|
|
|
y: stats.cpu_usages[procStats.pid.toString()].cpu,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.keys(series).length > 0 ? Object.values(series) : [];
|
|
|
|
|
}, [statsHistory]);
|
|
|
|
|
const otherProcessMemSeries = useMemo(() => {
|
|
|
|
|
if (!statsHistory) {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const series: {
|
|
|
|
|
[key: string]: { name: string; data: { x: any; y: any }[] };
|
|
|
|
|
} = {};
|
|
|
|
|
|
|
|
|
|
statsHistory.forEach((stats) => {
|
|
|
|
|
const statTime = new Date(stats.service.last_updated * 1000);
|
|
|
|
|
|
|
|
|
|
Object.entries(stats.processes).forEach(([key, procStats]) => {
|
|
|
|
|
if (procStats.pid.toString() in stats.cpu_usages) {
|
|
|
|
|
if (!(key in series)) {
|
|
|
|
|
series[key] = { name: key, data: [] };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
series[key].data.push({
|
|
|
|
|
x: statTime,
|
|
|
|
|
y: stats.cpu_usages[procStats.pid.toString()].mem,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
return Object.values(series);
|
|
|
|
|
}, [statsHistory]);
|
|
|
|
|
|
2023-12-08 16:33:22 +03:00
|
|
|
return (
|
|
|
|
|
<>
|
2024-01-26 19:51:01 +03:00
|
|
|
<div className="flex items-center">
|
|
|
|
|
<Heading as="h2">System</Heading>
|
|
|
|
|
{initialStats && (
|
|
|
|
|
<div className="ml-2 text-sm">{initialStats[0].service.version}</div>
|
|
|
|
|
)}
|
|
|
|
|
</div>
|
|
|
|
|
{lastUpdated && (
|
|
|
|
|
<div className="text-xs mb-2">
|
|
|
|
|
Last refreshed: <TimeAgo time={lastUpdated * 1000} dense />
|
|
|
|
|
</div>
|
|
|
|
|
)}
|
2024-01-25 00:20:16 +03:00
|
|
|
|
|
|
|
|
<Heading as="h4">Detectors</Heading>
|
2024-01-25 02:53:32 +03:00
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-3">
|
2024-01-25 00:20:16 +03:00
|
|
|
<SystemGraph
|
|
|
|
|
graphId="detector-inference"
|
|
|
|
|
title="Inference Speed"
|
|
|
|
|
unit="ms"
|
2024-01-25 02:53:32 +03:00
|
|
|
data={detInferenceTimeSeries}
|
2024-01-25 00:20:16 +03:00
|
|
|
/>
|
|
|
|
|
<SystemGraph
|
|
|
|
|
graphId="detector-usages"
|
2024-01-25 02:53:32 +03:00
|
|
|
title="CPU"
|
|
|
|
|
unit="%"
|
|
|
|
|
data={detCpuSeries}
|
|
|
|
|
/>
|
|
|
|
|
<SystemGraph
|
|
|
|
|
graphId="detector-usages"
|
|
|
|
|
title="Memory"
|
2024-01-25 00:20:16 +03:00
|
|
|
unit="%"
|
2024-01-25 02:53:32 +03:00
|
|
|
data={detMemSeries}
|
2024-01-25 00:20:16 +03:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
{gpuSeries.length > 0 && (
|
|
|
|
|
<>
|
|
|
|
|
<Heading as="h4">GPUs</Heading>
|
2024-01-25 02:53:32 +03:00
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2">
|
2024-01-25 00:20:16 +03:00
|
|
|
<SystemGraph
|
|
|
|
|
graphId="detector-inference"
|
|
|
|
|
title="GPU Usage"
|
|
|
|
|
unit="%"
|
|
|
|
|
data={gpuSeries}
|
|
|
|
|
/>
|
|
|
|
|
<SystemGraph
|
|
|
|
|
graphId="detector-usages"
|
|
|
|
|
title="GPU Memory"
|
|
|
|
|
unit="%"
|
|
|
|
|
data={gpuMemSeries}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</>
|
|
|
|
|
)}
|
|
|
|
|
<Heading as="h4">Other Processes</Heading>
|
2024-01-25 02:53:32 +03:00
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2">
|
2024-01-25 00:20:16 +03:00
|
|
|
<SystemGraph
|
|
|
|
|
graphId="process-cpu"
|
|
|
|
|
title="CPU"
|
|
|
|
|
unit="%"
|
|
|
|
|
data={otherProcessCpuSeries}
|
|
|
|
|
/>
|
|
|
|
|
<SystemGraph
|
|
|
|
|
graphId="process-mem"
|
|
|
|
|
title="Memory"
|
|
|
|
|
unit="%"
|
|
|
|
|
data={otherProcessMemSeries}
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2023-12-08 16:33:22 +03:00
|
|
|
</>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default System;
|