Will the reviews topic get more frequent update messages #16048
-
The reviews topic seems to very rarely get an "update" message despite zones changing, or objects moving around. I have an example from today where I setup a notification (using the blueprint) that required two zones to be entered in order. So the entire event is over in 6 seconds as i walked through the frame. As the "new" message did not meet the notification criteria, nothing was received on my phone until after the end message was sent. Now this is a short clip, but the same behavior is observed even on objects that spend a bit more time in frame. I have rarely seen an update messages and i have never seen more than 1 update message. So i'm curious, what are the conditions for such a message to be sent now, and can we consider increasing the frequency or triggers. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
The /reviews topic represents overall camera activity, it is not a verbose topic that will update when any object has something update about it. It is designed to be a direct reflection of what activity the user has configured they care about via the config (alerts). with increased frequency it would just become another /events topic that updates too frequently for many users requiring filtering which is not appropriate as the topic is directly used for frigate's built in notifications and UI updates via websocket. An update message will only be sent if the status changes from In your case, if presence in the second zone is the requirement to create a notification then perhaps the config should be changed such that only the second zone can make a review item be considered an alert. |
Beta Was this translation helpful? Give feedback.
The /reviews topic represents overall camera activity, it is not a verbose topic that will update when any object has something update about it. It is designed to be a direct reflection of what activity the user has configured they care about via the config (alerts). with increased frequency it would just become another /events topic that updates too frequently for many users requiring filtering which is not appropriate as the topic is directly used for frigate's built in notifications and UI updates via websocket.
An update message will only be sent if the status changes from
detection
toalert
based on the review config or if there are additional objects than previous during the same ac…