DiskSpace: Event does not exist at*

Forum for questions and support relating to the 1.34.x releases only.
Post Reply
Firstsage
Posts: 2
Joined: Tue Oct 20, 2020 4:30 am

DiskSpace: Event does not exist at*

Post 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
joe7rocks
Posts: 2
Joined: Wed Oct 21, 2020 2:54 pm

Re: DiskSpace: Event does not exist at*

Post 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.
prplhaz4
Posts: 4
Joined: Fri Mar 13, 2020 7:37 pm

Re: DiskSpace: Event does not exist at*

Post 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;
Post Reply