diff --git a/web/src/pages/System.tsx b/web/src/pages/System.tsx index a7771532a..eb472a10f 100644 --- a/web/src/pages/System.tsx +++ b/web/src/pages/System.tsx @@ -215,7 +215,10 @@ function GeneralMetrics({ lastUpdated, setLastUpdated }: GeneralMetricsProps) { // stats const { data: initialStats } = useSWR( - ["stats/history", { keys: "cpu_usages,detectors,processes,service" }], + [ + "stats/history", + { keys: "cpu_usages,detectors,gpu_usages,processes,service" }, + ], { revalidateOnFocus: false, },