From 20b3cdf5e7d3c7a703318877506494de17cab96a Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 29 Mar 2026 07:18:32 -0500 Subject: [PATCH] frontend types --- web/src/types/stats.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/web/src/types/stats.ts b/web/src/types/stats.ts index c4b811185..0bd4ebde3 100644 --- a/web/src/types/stats.ts +++ b/web/src/types/stats.ts @@ -28,6 +28,9 @@ export type CameraStats = { expected_fps: number; reconnects_last_hour: number; stalls_last_hour: number; + ffmpeg_cpu?: string; + capture_cpu?: string; + detect_cpu?: string; }; export type CpuStats = { @@ -42,6 +45,8 @@ export type DetectorStats = { inference_speed: number; pid: number; temperature?: number; + cpu?: string; + mem?: string; }; export type EmbeddingsStats = { @@ -53,6 +58,8 @@ export type EmbeddingsStats = { export type ExtraProcessStats = { pid: number; + cpu?: string; + mem?: string; }; export type GpuStats = {