[Bug]: No notification on manually triggered Events #15558
-
Checklist
Describe the problem you are havingI have running frigate which monitors different cameras. Doorbell and Front cameras are few of them. On the event of doorbell pressed, I am triggering the manual event over API. I am also getting successfull notification as per docs. Steps to reproduce
EXPECTED : Observed : Version0.14.1-f4f3cfa In which browser(s) are you experiencing the issue with?No response Frigate config filemqtt:
host: IP
user: viseron
password: 9tmEpozxXQ35BEaj65yG
topic_prefix: home/frigate_nvr
detectors:
coral:
type: edgetpu
device: usb
# logger:
# Optional: default log level (default: shown below)
# default: warning
timestamp_style:
# Optional: Position of the timestamp (default: shown below)
# "tl" (top left), "tr" (top right), "bl" (bottom left), "br" (bottom right)
position: br
format: '%d/%m/%Y %H:%M:%S'
color:
red: 255
green: 255
blue: 255
thickness: 2
effect: shadow
objects:
track:
- person
- dog
- cat
filters:
person:
min_score: 0.6
threshold: 0.7
min_area: 10000
snapshots:
enabled: true
timestamp: true
bounding_box: true
retain:
default: 30
record:
sync_recordings: true
enabled: true
retain:
days: 3
mode: active_objects
events:
pre_capture: 5
post_capture: 5
retain:
default: 30
mode: active_objects
detect:
width: 896
height: 672
fps: 7
# ffmpeg:
# hwaccel_args: preset-vaapi
cameras:
Front: # <------ Name the camera
ffmpeg:
inputs:
- path: rtsp://FRIAGATE_USER_ID:FRIAGATE_PASSWORD@IP:554/Preview_01_main
input_args: preset-rtsp-restream
roles:
- record
- path: rtsp://FRIAGATE_USER_ID:FRIAGATE_PASSWORD@IP:554/Preview_01_sub
input_args: preset-rtsp-restream
roles:
- detect
motion:
mask:
- 428,104,0,224,0,0,896,0,896,196
ui:
order: 0
Back: # <------ Name the camera
ffmpeg:
inputs:
- path:
rtmp://IP/bcs/channel0_main.bcs?channel=0&stream=0&user=FRIAGATE_USER_ID&password=FRIAGATE_PASSWORD
input_args:
preset-rtmp-generic
roles:
- record
- path:
rtmp://IP/bcs/channel0_sub.bcs?channel=0&stream=0&user=FRIAGATE_USER_ID&password=FRIAGATE_PASSWORD
input_args:
preset-rtmp-generic
roles:
- detect
motion:
mask:
- 0,188,326,0,538,21,896,76,896,0,896,0,896,0,0,0
ui:
order: 1
Doorbell:
ffmpeg:
inputs:
- path:
rtsp://FRIAGATE_USER_ID:FRIAGATE_PASSWORD@IP:554/Preview_01_main
input_args:
preset-rtsp-restream
roles:
- record
record:
sync_recordings: true
enabled: true
events:
pre_capture: 5
post_capture: 5
retain:
default: 30
mode: all
ui:
order: 2
birdseye:
enabled: true
width: 1280
height: 720
quality: 8
mode: continuous
version: 0.14 docker-compose file or Docker CLI commandversion: "3.9"
services:
frigate:
container_name: frigate
image: ghcr.io/blakeblackshear/frigate:0.14.1 # 20 Sep 2024
privileged: true # this may not be necessary for all setups
restart: unless-stopped
shm_size: "64mb" # update for your cameras based on calculation above
# hostname: frigate
mac_address: SOME_MAC
networks:
ext_smartNet:
ipv4_address: SOME_IP # <-- Update
volumes:
- ./data/config:/config
- ./data/media:/media/frigate
- /etc/localtime:/etc/localtime:ro
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
devices:
- /dev/bus/usb:/dev/bus/usb # passes the USB Coral, needs to be modified for other versions
- /dev/dri/renderD128:/dev/dri/renderD128 # for intel hwaccel, needs to be updated for your hardware
- /dev/dri/card0:/dev/dri/card0
ports:
- "5000:5000"
- "1935:1935" # RTMP feeds
environment:
FRIGATE_RTSP_PASSWORD: "password"
LIBVA_DRIVER_NAME: i965
networks:
ext_smartNet:
external: true
name: smartNet Relevant Frigate log output<NO LOGS AVAILABLE> Relevant go2rtc log output<NO LOGS AVAILABLE> Operating systemOther Linux Install methodDocker Compose Network connectionWired Camera make and modelReolink Screenshots of the Frigate UI's System metrics pagesAny other information that may be helpfulI also noticed that events are getting created. I could see them "under review" section. But I am not able to play them. Not sure if those are getting stored and may be because of that it is not creating an events ? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
this is not a bug and is working as expected. The vast majority of the fields in /events are not applicable to manual events, and as the user you already know the manual event has occurred so you can just send a notification there instead of relying on Frigate to tell you about something that you told Frigate about. |
Beta Was this translation helpful? Give feedback.
-
Okay. I wrongly understood that all the events are same, irrespective from
where they occurs.
…On Tue, 17 Dec 2024, 20:00 Nicolas Mowen, ***@***.***> wrote:
Closed #15558
<#15558> as
resolved.
—
Reply to this email directly, view it on GitHub
<#15558>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ALBC7RFT7EMIH2KEEZVIVTD2GBYC7AVCNFSM6AAAAABTZCHPRGVHI2DSMVQWIX3LMV45UABFIRUXGY3VONZWS33OIV3GK3TUHI5E433UNFTGSY3BORUW63R3GE3DONRZGQ3A>
.
You are receiving this because you authored the thread.Message ID:
<blakeblackshear/frigate/repo-discussions/15558/discussion_event/1676946@
github.com>
|
Beta Was this translation helpful? Give feedback.
this is not a bug and is working as expected. The vast majority of the fields in /events are not applicable to manual events, and as the user you already know the manual event has occurred so you can just send a notification there instead of relying on Frigate to tell you about something that you told Frigate about.