diff --git a/frigate/stats.py b/frigate/stats.py index 86ac3780b..b67c2109b 100644 --- a/frigate/stats.py +++ b/frigate/stats.py @@ -215,6 +215,7 @@ def stats_snapshot( "process_fps": round(camera_stats["process_fps"].value, 2), "skipped_fps": round(camera_stats["skipped_fps"].value, 2), "detection_fps": round(camera_stats["detection_fps"].value, 2), + "detection_enabled": camera_stats["detection_enabled"].value, "pid": pid, "capture_pid": cpid, "ffmpeg_pid": ffmpeg_pid, diff --git a/web/src/routes/System.jsx b/web/src/routes/System.jsx index b60ceeb9a..6f51a5397 100644 --- a/web/src/routes/System.jsx +++ b/web/src/routes/System.jsx @@ -234,7 +234,7 @@ export default function System() {