Page 1 of 1

DiskSpace: Event does not exist at*

Posted: Tue Oct 20, 2020 4:54 am
by Firstsage
DiskSpace: Event does not exist at /var/cache/zoneminder/events2/1/2020-10-13/115752:ZoneMinder::Event: AlarmFrames => 37 AvgScore => 6 Cause => Motion DefaultVideo => 115752-video.mp4 EndTime => 2020-10-13 17:55:06 Frames => 135 Height => 1536 Id => 115752 Length => 7.61 MaxScore => 8 MonitorId => 1 Name => Event- 115752 Notes => Motion: Main Orientation => ROTATE_180 SaveJPEGs => 3 Scheme => Medium StartTime => 2020-10-13 17:54:59 StateId => 1 TotScore => 230 Width => 2048

Getting multiple of these errors. I have checked the Storage Path in settings, and it matches what is in ZM_Storage.conf
Also checked that all of the monitors are set to the correct Storage Path. Any ideas would be helpful. I am on version 1.34.21.

Thanks!

Jon

Re: DiskSpace: Event does not exist at*

Posted: Wed Oct 21, 2020 2:55 pm
by joe7rocks
Getting the same in v1.34.22

Also noticed it throws up a bunch of errors regarding monitors/cameras that are NOT even in the system anymore.

Re: DiskSpace: Event does not exist at*

Posted: Fri Oct 23, 2020 6:19 pm
by prplhaz4
In my (brief) experience, these seem to be the database catching up with the filesystem, and will go away once all database events (that have no corresponding files) are deleted by the automatic cleanup job (Options->System->RUN_AUDIT/zmaudit).

I saw tons of these errors in two instances: 1. adding/moving a storage area and 2. migrating my install - both of which involved messing with storage of events on disk.

Running this sql to move cameras to a new storage area was also helpful, and may apply:
https://wiki.zoneminder.com/MySQL

Code: Select all

select * from Monitors;
update Monitors set StorageID = 2 where StorageID = 0;