mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-04 02:05:21 +03:00
Improve cleanup log
This commit is contained in:
parent
fce03ec90e
commit
1743823e3e
@ -64,6 +64,7 @@ class StorageMaintainer(threading.Thread):
|
|||||||
"""Return if storage needs cleanup."""
|
"""Return if storage needs cleanup."""
|
||||||
# currently runs cleanup if less than 1 hour of space is left
|
# currently runs cleanup if less than 1 hour of space is left
|
||||||
remaining_storage = round(shutil.disk_usage(RECORD_DIR).free / 1000000, 1)
|
remaining_storage = round(shutil.disk_usage(RECORD_DIR).free / 1000000, 1)
|
||||||
|
logger.debug(f"Storage cleanup check: {self.avg_segment_sizes['total']['hour']} hourly with remaining storage: {remaining_storage}")
|
||||||
return remaining_storage < self.avg_segment_sizes["total"]["hour"]
|
return remaining_storage < self.avg_segment_sizes["total"]["hour"]
|
||||||
|
|
||||||
def delete_recording_segments(
|
def delete_recording_segments(
|
||||||
@ -193,7 +194,6 @@ class StorageMaintainer(threading.Thread):
|
|||||||
|
|
||||||
needs_cleanup = self.check_storage_needs_cleanup()
|
needs_cleanup = self.check_storage_needs_cleanup()
|
||||||
|
|
||||||
logger.debug(f"needs cleanup: {needs_cleanup}")
|
|
||||||
if needs_cleanup:
|
if needs_cleanup:
|
||||||
self.reduce_storage_consumption()
|
self.reduce_storage_consumption()
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user