diff --git a/frigate/util/services.py b/frigate/util/services.py index 09caadf41..64d83833d 100644 --- a/frigate/util/services.py +++ b/frigate/util/services.py @@ -548,6 +548,8 @@ def get_jetson_stats() -> Optional[dict[int, dict]]: with open("/sys/devices/platform/gpu.0/load", "r") as f: gpuload = float(f.readline()) / 10 results["gpu"] = f"{gpuload}%" + else: + results["gpu"] = "-" except Exception: return None