From 99aa8ab5228dbc05717f5c8449946ee8c649ddb8 Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 22 May 2026 08:54:12 -0600 Subject: [PATCH] Adjust default iGPU name when it can't be found --- frigate/util/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/util/services.py b/frigate/util/services.py index 4a715608e2..a5b1af8249 100644 --- a/frigate/util/services.py +++ b/frigate/util/services.py @@ -478,7 +478,7 @@ def get_intel_gpu_stats( overall_pct = min(100.0, compute_pct + dec_pct) entry: dict[str, Any] = { - "name": names.get(pdev) or f"Intel GPU {pdev}", + "name": names.get(pdev) or "Intel iGPU", "vendor": "intel", "gpu": f"{round(overall_pct, 2)}%", "mem": "-%",