[Detector Support]: Problems trying to setup .tflite detector #14262
-
Describe the problem you are havingFirst of all, my enviroment is a Docker Container that runs on WSL2. Version0.14.1-f4f3cfa Frigate config filemqtt:
enabled: false
go2rtc:
streams:
test1:
- rtsp://*****:*****@ip/cam/realmonitor?channel=1&subtype=1
test2:
- rtsp://*****:******@ip/Streaming/Channels/101
test9:
- rtsp://*****:******@ip/Streaming/Channels/401
test10:
- rtsp://*****:******@ip/Streaming/Channels/601
test14:
- rtsp://*****:******@ip/Streaming/Channels/801
test15:
- rtsp://*****:******@ip/Streaming/Channels/901
cameras:
test1:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/test1
roles:
- detect
- record
- rtmp
detect:
enabled: true
motion:
threshold: 60
contour_area: 20
improve_contrast: 'true'
test2:
enabled: true
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/test2
input_args: preset-rtsp-restream
roles:
- detect
- record
- rtmp
detect:
enabled: true
motion:
threshold: 50
contour_area: 25
improve_contrast: 'true'
test9:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/test9
input_args: preset-rtsp-restream
roles:
- detect
- record
- rtmp
detect:
enabled: true
motion:
threshold: 65
contour_area: 30
improve_contrast: 'true'
test10:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/test10
input_args: preset-rtsp-restream
roles:
- detect
- record
- rtmp
detect:
enabled: true
motion:
threshold: 60
contour_area: 25
improve_contrast: 'true'
test14:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/test14
roles:
- detect
- rtmp
- record
detect:
enabled: true
zones:
prueba:
coordinates: 0.009,0.077,0.692,0.074,0.909,0.971,0.005,0.99
loitering_time: 0
motion:
threshold: 60
contour_area: 20
improve_contrast: 'true'
test15:
ffmpeg:
inputs:
- path: rtsp://127.0.0.1:8554/test15
roles:
- detect
- rtmp
- record
detect:
enabled: true
motion:
threshold: 70
contour_area: 32
improve_contrast: 'true'
detectors:
cpu1:
type: cpu
num_threads: 3
model:
path: "/config/edge_TPU_int8_qat.tflite"
objects:
track:
- person
- car
filters:
person:
min_area: 100
max_area: 100000
min_score: 0.60
record:
# Optional: Enable recording (default: shown below)
# WARNING: If recording is disabled in the config, turning it on via
# the UI or MQTT later will have no effect.
enabled: true
# Optional: Number of minutes to wait between cleanup runs (default: shown below)
# This can be used to reduce the frequency of deleting recording segments from disk if you want to minimize i/o
expire_interval: 60
# Optional: Sync recordings with disk on startup and once a day (default: shown below).
sync_recordings: false
# Optional: Retention settings for recording
retain:
# Optional: Number of days to retain recordings regardless of events (default: shown below)
# NOTE: This should be set to 0 and retention should be defined in events section below
# if you only want to retain recordings of events.
days: 0
# Optional: Mode for retention. Available options are: all, motion, and active_objects
# all - save all recording segments regardless of activity
# motion - save all recordings segments with any detected motion
# active_objects - save all recording segments with active/moving objects
# NOTE: this mode only applies when the days setting above is greater than 0
mode: all
# Optional: Recording Export Settings
export:
# Optional: Timelapse Output Args (default: shown below).
# NOTE: The default args are set to fit 24 hours of recording into 1 hour playback.
# See
# https://stackoverflow.com/a/58268695
# for more info on how these args work.
# As an example: if you wanted to go from 24 hours to 30 minutes that would be going
# from 86400 seconds to 1800 seconds which would be 1800 / 86400 = 0.02.
# The -r (framerate) dictates how smooth the output video is.
# So the args would be -vf setpts=0.02*PTS -r 30 in that case.
timelapse_args: -vf setpts=0.04*PTS -r 30
# Optional: Recording Preview Settings
preview:
# Optional: Quality of recording preview (default: shown below).
# Options are: very_low, low, medium, high, very_high
quality: medium
# Optional: Event recording settings
snapshots:
enabled: true
timestamp: true
bounding_box: true
version: 0.14
camera_groups:
cameras:
order: 1
icon: LuActivity
cameras:
- test1
- test10
- test14
- test15
- test2
- test9 docker-compose file or Docker CLI commandversion: "3.9"
services:
frigate:
container_name: frigate
privileged: true # this may not be necessary for all setups
restart: unless-stopped
image: ghcr.io/blakeblackshear/frigate:stable
shm_size: "128mb" # update for your cameras based on calculation above
devices:
- /dev/dri/renderD128
volumes:
# - ./config:/config
# - ./storage:/media/frigate
- \\wsl$$\Ubuntu\etc\localtime:/etc/localtime:ro
- \\wsl$$\Ubuntu\home\nacho\frigate\config.yml:/config/config.yml
- \\wsl$$\Ubuntu\home\nacho\frigate\clips:/media/frigate
- type: tmpfs # Optional: 1GB of memory, reduces SSD/SD Card wear
target: /tmp/cache
tmpfs:
size: 1000000000
ports:
- "8971:8971"
# - "5000:5000" # Internal unauthenticated access. Expose carefully.
- "8554:8554" # RTSP feeds
- "8555:8555/tcp" # WebRTC over tcp
- "8555:8555/udp" # WebRTC over udp
environment:
FRIGATE_RTSP_PASSWORD: "passwd" Relevant Frigate log output2024-10-10 13:39:42 2024-10-10 11:39:42.374038989 [INFO] Starting NGINX...
2024-10-10 13:39:42 2024-10-10 11:39:42.374871911 [INFO] Preparing new go2rtc config...
2024-10-10 13:39:42 2024-10-10 11:39:42.375137509 [INFO] Preparing Frigate...
2024-10-10 13:39:42 2024-10-10 11:39:42.412230716 [INFO] Starting Frigate...
2024-10-10 13:39:42 2024-10-10 11:39:42.790495542 [WARN] Using go2rtc binary from '/config/go2rtc' instead of the embedded one
2024-10-10 13:39:42 2024-10-10 11:39:42.790498104 [INFO] Starting go2rtc...
2024-10-10 13:39:42 2024-10-10 11:39:42.844799562 11:39:42.844 INF go2rtc platform=linux/amd64 revision=a4885c2 version=1.9.4
2024-10-10 13:39:42 2024-10-10 11:39:42.844803194 11:39:42.844 INF config path=/dev/shm/go2rtc.yaml
2024-10-10 13:39:42 2024-10-10 11:39:42.845181095 11:39:42.845 INF [rtsp] listen addr=:8554
2024-10-10 13:39:42 2024-10-10 11:39:42.845329307 11:39:42.845 INF [api] listen addr=:1984
2024-10-10 13:39:42 2024-10-10 11:39:42.845552866 11:39:42.845 INF [webrtc] listen addr=:8555/tcp
2024-10-10 13:39:43 2024-10-10 11:39:43.454071387 [INFO] Starting certsync...
2024-10-10 13:39:43 2024-10-10 11:39:43.524029961 127.0.0.1 - - [10/Oct/2024:11:39:43 +0000] "" 400 0 "-" "-" "-"
2024-10-10 13:39:44 2024-10-10 11:39:44.560176912 [2024-10-10 11:39:44] frigate.app INFO : Starting Frigate (0.14.1-f4f3cfa)
2024-10-10 13:39:44 2024-10-10 11:39:44.565324670 [2024-10-10 11:39:44] frigate.util.config INFO : Checking if frigate config needs migration...
2024-10-10 13:39:44 2024-10-10 11:39:44.605198080 [2024-10-10 11:39:44] frigate.util.config INFO : frigate config does not need migration...
2024-10-10 13:39:44 2024-10-10 11:39:44.678770880 [2024-10-10 11:39:44] frigate.util.services WARNING : Did not detect hwaccel, using a GPU for accelerated video decoding is highly recommended
2024-10-10 13:39:46 2024-10-10 11:39:46.891829176 2024/10/10 11:39:46 [error] 163#163: *2 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:39:46 2024-10-10 11:39:46.891880264 2024/10/10 11:39:46 [error] 163#163: *2 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:39:46 2024-10-10 11:39:46.891938803 172.18.0.1 - - [10/Oct/2024:11:39:46 +0000] "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1" 500 177 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:39:47 2024-10-10 11:39:47.228906029 2024/10/10 11:39:47 [error] 162#162: *4 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:39:47 2024-10-10 11:39:47.228909525 2024/10/10 11:39:47 [error] 162#162: *4 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:39:48 2024-10-10 11:39:48.870854399 2024/10/10 11:39:48 [error] 165#165: *6 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:39:48 2024-10-10 11:39:48.870858588 2024/10/10 11:39:48 [error] 165#165: *6 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:39:48 2024-10-10 11:39:48.870931422 172.18.0.1 - - [10/Oct/2024:11:39:48 +0000] "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1" 500 177 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:39:52 2024-10-10 11:39:52.253583117 2024/10/10 11:39:52 [error] 163#163: *8 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:39:52 2024-10-10 11:39:52.253585890 2024/10/10 11:39:52 [error] 163#163: *8 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:39:52 2024-10-10 11:39:52.372477702 [INFO] Starting go2rtc healthcheck service...
2024-10-10 13:39:57 2024-10-10 11:39:57.276617627 2024/10/10 11:39:57 [error] 165#165: *10 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:39:57 2024-10-10 11:39:57.276620277 2024/10/10 11:39:57 [error] 165#165: *10 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:01 2024-10-10 11:40:01.449029077 2024/10/10 11:40:01 [error] 164#164: *12 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.449031928 2024/10/10 11:40:01 [error] 164#164: *12 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.449074045 172.18.0.1 - - [10/Oct/2024:11:40:01 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:01 2024-10-10 11:40:01.459048554 2024/10/10 11:40:01 [error] 162#162: *13 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.459079274 2024/10/10 11:40:01 [error] 162#162: *13 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.459163705 172.18.0.1 - - [10/Oct/2024:11:40:01 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:01 2024-10-10 11:40:01.463464771 2024/10/10 11:40:01 [error] 162#162: *15 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.463468573 2024/10/10 11:40:01 [error] 162#162: *15 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.463509188 172.18.0.1 - - [10/Oct/2024:11:40:01 +0000] "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1" 500 177 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:01 2024-10-10 11:40:01.465450530 2024/10/10 11:40:01 [error] 162#162: *14 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/preview/all/start/1728471600/end/1728561600 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.465454334 2024/10/10 11:40:01 [error] 162#162: *14 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/preview/all/start/1728471600/end/1728561600 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/review"
2024-10-10 13:40:01 2024-10-10 11:40:01.465491844 172.18.0.1 - - [10/Oct/2024:11:40:01 +0000] "GET /api/preview/all/start/1728471600/end/1728561600 HTTP/1.1" 500 177 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.300499968 2024/10/10 11:40:02 [error] 164#164: *20 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:02 2024-10-10 11:40:02.300503265 2024/10/10 11:40:02 [error] 164#164: *20 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:02 2024-10-10 11:40:02.763260815 2024/10/10 11:40:02 [error] 162#162: *22 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test1/latest.webp?h=360&cache=1728560402726 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.763289808 2024/10/10 11:40:02 [error] 162#162: *22 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test1/latest.webp?h=360&cache=1728560402726 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.763369272 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test1/latest.webp?h=360&cache=1728560402726 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.771795236 2024/10/10 11:40:02 [error] 163#163: *29 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.771799522 2024/10/10 11:40:02 [error] 163#163: *29 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.771872586 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.779468525 2024/10/10 11:40:02 [error] 163#163: *31 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.779473586 2024/10/10 11:40:02 [error] 163#163: *31 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.788793693 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test2/latest.webp?h=360&cache=1728560402729 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.788825864 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test15/latest.webp?h=360&cache=1728560402728 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.788841273 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test10/latest.webp?h=360&cache=1728560402727 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.788875065 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test14/latest.webp?h=360&cache=1728560402727 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.811452690 2024/10/10 11:40:02 [error] 163#163: *38 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test10/latest.webp?h=293&cache=1728560402789 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.811457651 2024/10/10 11:40:02 [error] 163#163: *38 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test10/latest.webp?h=293&cache=1728560402789 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.811548416 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560402789 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.819965812 2024/10/10 11:40:02 [error] 162#162: *37 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test1/latest.webp?h=288&cache=1728560402789 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.820023476 2024/10/10 11:40:02 [error] 162#162: *37 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test1/latest.webp?h=288&cache=1728560402789 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.820083988 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560402789 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.820892403 2024/10/10 11:40:02 [error] 162#162: *39 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test14/latest.webp?h=293&cache=1728560402789 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.820919616 2024/10/10 11:40:02 [error] 162#162: *39 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test14/latest.webp?h=293&cache=1728560402789 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.821211156 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560402789 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.821828846 2024/10/10 11:40:02 [error] 162#162: *42 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test9/latest.webp?h=293&cache=1728560402789 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.821832048 2024/10/10 11:40:02 [error] 162#162: *42 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test9/latest.webp?h=293&cache=1728560402789 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.822000550 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560402789 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.823518624 2024/10/10 11:40:02 [error] 162#162: *41 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test2/latest.webp?h=288&cache=1728560402789 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.823522342 2024/10/10 11:40:02 [error] 162#162: *41 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test2/latest.webp?h=288&cache=1728560402789 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.823573793 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560402789 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:02 2024-10-10 11:40:02.827344995 2024/10/10 11:40:02 [error] 162#162: *40 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test15/latest.webp?h=293&cache=1728560402789 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.827377226 2024/10/10 11:40:02 [error] 162#162: *40 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test15/latest.webp?h=293&cache=1728560402789 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:02 2024-10-10 11:40:02.827416597 172.18.0.1 - - [10/Oct/2024:11:40:02 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560402789 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:04 2024-10-10 11:40:04.808364225 2024/10/10 11:40:04 [error] 162#162: *49 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /ws HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971"
2024-10-10 13:40:04 2024-10-10 11:40:04.808367387 2024/10/10 11:40:04 [error] 162#162: *49 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /ws HTTP/1.1", host: "127.0.0.1:8971"
2024-10-10 13:40:04 2024-10-10 11:40:04.808413148 172.18.0.1 - - [10/Oct/2024:11:40:04 +0000] "GET /ws HTTP/1.1" 500 177 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:07 2024-10-10 11:40:07.322889434 2024/10/10 11:40:07 [error] 162#162: *51 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:07 2024-10-10 11:40:07.322892572 2024/10/10 11:40:07 [error] 162#162: *51 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:07 2024-10-10 11:40:07.813298104 2024/10/10 11:40:07 [error] 162#162: *53 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:07 2024-10-10 11:40:07.813302488 2024/10/10 11:40:07 [error] 162#162: *53 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:07 2024-10-10 11:40:07.813337428 172.18.0.1 - - [10/Oct/2024:11:40:07 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:07 2024-10-10 11:40:07.814685378 2024/10/10 11:40:07 [error] 163#163: *54 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:07 2024-10-10 11:40:07.814688989 2024/10/10 11:40:07 [error] 163#163: *54 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:11 2024-10-10 11:40:11.476173859 2024/10/10 11:40:11 [error] 163#163: *57 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:11 2024-10-10 11:40:11.476176683 2024/10/10 11:40:11 [error] 163#163: *57 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:11 2024-10-10 11:40:11.476234608 172.18.0.1 - - [10/Oct/2024:11:40:11 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:12 2024-10-10 11:40:12.349509341 2024/10/10 11:40:12 [error] 162#162: *59 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:12 2024-10-10 11:40:12.349511967 2024/10/10 11:40:12 [error] 162#162: *59 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:12 2024-10-10 11:40:12.477054227 2024/10/10 11:40:12 [error] 163#163: *61 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:12 2024-10-10 11:40:12.477069135 2024/10/10 11:40:12 [error] 163#163: *61 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:12 2024-10-10 11:40:12.477107163 172.18.0.1 - - [10/Oct/2024:11:40:12 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:17 2024-10-10 11:40:17.375133468 2024/10/10 11:40:17 [error] 162#162: *63 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:17 2024-10-10 11:40:17.375136506 2024/10/10 11:40:17 [error] 162#162: *63 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:22 2024-10-10 11:40:22.397557958 2024/10/10 11:40:22 [error] 162#162: *65 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:22 2024-10-10 11:40:22.397560555 2024/10/10 11:40:22 [error] 162#162: *65 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:25 2024-10-10 11:40:25.838774126 2024/10/10 11:40:25 [error] 163#163: *67 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.838778262 2024/10/10 11:40:25 [error] 163#163: *67 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.838806375 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.847962146 2024/10/10 11:40:25 [error] 165#165: *74 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test15/latest.webp?h=293&cache=1728560425818 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.847966044 2024/10/10 11:40:25 [error] 165#165: *74 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test15/latest.webp?h=293&cache=1728560425818 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.848000600 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560425818 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.854163671 2024/10/10 11:40:25 [error] 165#165: *77 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test2/latest.webp?h=288&cache=1728560425818 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.854166579 2024/10/10 11:40:25 [error] 165#165: *77 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test2/latest.webp?h=288&cache=1728560425818 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.854246164 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560425818 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.860944499 2024/10/10 11:40:25 [error] 165#165: *79 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test9/latest.webp?h=293&cache=1728560425818 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.860949234 2024/10/10 11:40:25 [error] 165#165: *79 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test9/latest.webp?h=293&cache=1728560425818 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.860976051 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560425818 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.861716316 2024/10/10 11:40:25 [error] 163#163: *68 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.861762735 2024/10/10 11:40:25 [error] 163#163: *68 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.861791298 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.862352900 2024/10/10 11:40:25 [error] 163#163: *69 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.862356124 2024/10/10 11:40:25 [error] 163#163: *69 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.862394433 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.862442505 2024/10/10 11:40:25 [error] 163#163: *71 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test10/latest.webp?h=293&cache=1728560425818 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.862465070 2024/10/10 11:40:25 [error] 163#163: *71 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test10/latest.webp?h=293&cache=1728560425818 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.862470211 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560425818 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.862503164 2024/10/10 11:40:25 [error] 163#163: *72 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test14/latest.webp?h=293&cache=1728560425818 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.862509994 2024/10/10 11:40:25 [error] 163#163: *72 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test14/latest.webp?h=293&cache=1728560425818 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.862537637 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560425818 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:25 2024-10-10 11:40:25.869483643 2024/10/10 11:40:25 [error] 163#163: *70 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/test1/latest.webp?h=288&cache=1728560425818 HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.869487885 2024/10/10 11:40:25 [error] 163#163: *70 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/test1/latest.webp?h=288&cache=1728560425818 HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:25 2024-10-10 11:40:25.869550824 172.18.0.1 - - [10/Oct/2024:11:40:25 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560425818 HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:27 2024-10-10 11:40:27.422880432 2024/10/10 11:40:27 [error] 162#162: *85 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:27 2024-10-10 11:40:27.422883092 2024/10/10 11:40:27 [error] 162#162: *85 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:27 2024-10-10 11:40:27.835437138 2024/10/10 11:40:27 [error] 163#163: *87 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:27 2024-10-10 11:40:27.835440193 2024/10/10 11:40:27 [error] 163#163: *87 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:28 2024-10-10 11:40:28.680461484 11:40:28.680 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:170 > error="read tcp 172.18.0.2:39108->195.135.60.81:554: i/o timeout" url=rtsp://admin:[email protected]:554/Streaming/Channels/601
2024-10-10 13:40:28 2024-10-10 11:40:28.920372638 172.18.0.1 - - [10/Oct/2024:11:40:28 +0000] "GET / HTTP/1.1" 200 2651 "https://127.0.0.1:8971/login" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:29 2024-10-10 11:40:29.079550574 2024/10/10 11:40:29 [error] 163#163: *89 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.079555648 2024/10/10 11:40:29 [error] 163#163: *89 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.083612354 2024/10/10 11:40:29 [error] 163#163: *91 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.083616650 2024/10/10 11:40:29 [error] 163#163: *91 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.083655192 172.18.0.1 - - [10/Oct/2024:11:40:29 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:29 2024-10-10 11:40:29.085089014 2024/10/10 11:40:29 [error] 163#163: *92 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.085121388 2024/10/10 11:40:29 [error] 163#163: *92 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.085126250 172.18.0.1 - - [10/Oct/2024:11:40:29 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:29 2024-10-10 11:40:29.098894460 172.18.0.1 - - [10/Oct/2024:11:40:29 +0000] "GET /images/apple-touch-icon.png HTTP/1.1" 200 4042 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:29 2024-10-10 11:40:29.100254895 2024/10/10 11:40:29 [error] 165#165: *95 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.100259006 2024/10/10 11:40:29 [error] 165#165: *95 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:29 2024-10-10 11:40:29.100336019 172.18.0.1 - - [10/Oct/2024:11:40:29 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:29 2024-10-10 11:40:29.452749685 [hevc @ 0x4d58380] PPS id out of range: 0
2024-10-10 13:40:29 2024-10-10 11:40:29.452775672 [hevc @ 0x4d58380] PPS id out of range: 0
2024-10-10 13:40:32 2024-10-10 11:40:32.449995734 2024/10/10 11:40:32 [error] 162#162: *98 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:32 2024-10-10 11:40:32.449999892 2024/10/10 11:40:32 [error] 162#162: *98 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:34 2024-10-10 11:40:34.285465970 2024/10/10 11:40:34 [error] 165#165: *100 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.285470700 2024/10/10 11:40:34 [error] 165#165: *100 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.286608342 2024/10/10 11:40:34 [error] 165#165: *101 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.286612854 2024/10/10 11:40:34 [error] 165#165: *101 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.286649901 172.18.0.1 - - [10/Oct/2024:11:40:34 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:34 2024-10-10 11:40:34.875345673 2024/10/10 11:40:34 [error] 165#165: *104 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.875388873 2024/10/10 11:40:34 [error] 165#165: *104 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.875393373 172.18.0.1 - - [10/Oct/2024:11:40:34 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:34 2024-10-10 11:40:34.882787396 2024/10/10 11:40:34 [error] 165#165: *105 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.882792668 2024/10/10 11:40:34 [error] 165#165: *105 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.882937270 172.18.0.1 - - [10/Oct/2024:11:40:34 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:34 2024-10-10 11:40:34.888806416 2024/10/10 11:40:34 [error] 165#165: *106 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.888810347 2024/10/10 11:40:34 [error] 165#165: *106 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:34 2024-10-10 11:40:34.888840431 172.18.0.1 - - [10/Oct/2024:11:40:34 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:37 2024-10-10 11:40:37.482412703 2024/10/10 11:40:37 [error] 162#162: *110 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:37 2024-10-10 11:40:37.482417234 2024/10/10 11:40:37 [error] 162#162: *110 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:39 2024-10-10 11:40:39.507055846 2024/10/10 11:40:39 [error] 165#165: *112 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:39 2024-10-10 11:40:39.507060526 2024/10/10 11:40:39 [error] 165#165: *112 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:39 2024-10-10 11:40:39.507139093 172.18.0.1 - - [10/Oct/2024:11:40:39 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:39 2024-10-10 11:40:39.508471680 2024/10/10 11:40:39 [error] 165#165: *113 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:39 2024-10-10 11:40:39.508500586 2024/10/10 11:40:39 [error] 165#165: *113 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:39 2024-10-10 11:40:39.508562801 172.18.0.1 - - [10/Oct/2024:11:40:39 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:40 2024-10-10 11:40:40.502520529 2024/10/10 11:40:40 [error] 165#165: *116 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:40 2024-10-10 11:40:40.502524739 2024/10/10 11:40:40 [error] 165#165: *116 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/config HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:40 2024-10-10 11:40:40.502526160 172.18.0.1 - - [10/Oct/2024:11:40:40 +0000] "GET /api/config HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:40 2024-10-10 11:40:40.503712908 2024/10/10 11:40:40 [error] 164#164: *117 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:40 2024-10-10 11:40:40.503728510 2024/10/10 11:40:40 [error] 164#164: *117 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/review?limit=10&severity=alert HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:40 2024-10-10 11:40:40.503795811 172.18.0.1 - - [10/Oct/2024:11:40:40 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:42 2024-10-10 11:40:42.141035612 11:40:42.140 WRN github.com/AlexxIT/go2rtc/internal/streams/producer.go:170 > error="read tcp 172.18.0.2:45164->195.135.60.81:554: i/o timeout" url=rtsp://admin:[email protected]:554/Streaming/Channels/601
2024-10-10 13:40:42 2024-10-10 11:40:42.507643729 2024/10/10 11:40:42 [error] 162#162: *120 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:42 2024-10-10 11:40:42.507646291 2024/10/10 11:40:42 [error] 162#162: *120 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:43 2024-10-10 11:40:43.571510816 127.0.0.1 - - [10/Oct/2024:11:40:43 +0000] "" 400 0 "-" "-" "-"
2024-10-10 13:40:44 2024-10-10 11:40:44.908251015 2024/10/10 11:40:44 [error] 165#165: *123 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:44 2024-10-10 11:40:44.908260406 2024/10/10 11:40:44 [error] 165#165: *123 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/profile HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:44 2024-10-10 11:40:44.908324408 172.18.0.1 - - [10/Oct/2024:11:40:44 +0000] "GET /api/profile HTTP/1.1" 500 177 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:40:47 2024-10-10 11:40:47.533962787 2024/10/10 11:40:47 [error] 162#162: *125 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:47 2024-10-10 11:40:47.533966168 2024/10/10 11:40:47 [error] 162#162: *125 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:49 2024-10-10 11:40:49.319352388 2024/10/10 11:40:49 [error] 165#165: *127 connect() failed (111: Connection refused) while connecting to upstream, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:49 2024-10-10 11:40:49.319355881 2024/10/10 11:40:49 [error] 165#165: *127 auth request unexpected status: 502 while sending to client, client: 172.18.0.1, server: , request: "GET /api/stats HTTP/1.1", host: "127.0.0.1:8971", referrer: "https://127.0.0.1:8971/"
2024-10-10 13:40:49 2024-10-10 11:40:49.894658939 [ WARN:[email protected]] global cap_ffmpeg_impl.hpp:453 _opencv_ffmpeg_interrupt_callback Stream timeout triggered after 30011.130442 ms
2024-10-10 13:40:49 2024-10-10 11:40:49.894661281 [ WARN:[email protected]] global cap_ffmpeg_impl.hpp:453 _opencv_ffmpeg_interrupt_callback Stream timeout triggered after 30011.257374 ms
2024-10-10 13:40:52 2024-10-10 11:40:52.554784933 2024/10/10 11:40:52 [error] 162#162: *129 connect() failed (111: Connection refused) while connecting to upstream, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", subrequest: "/auth", upstream: "http://127.0.0.1:5001/auth", host: "127.0.0.1:5000"
2024-10-10 13:40:52 2024-10-10 11:40:52.554787527 2024/10/10 11:40:52 [error] 162#162: *129 auth request unexpected status: 502 while sending to client, client: 127.0.0.1, server: , request: "GET /api/version HTTP/1.1", host: "127.0.0.1:5000"
2024-10-10 13:40:55 2024-10-10 11:40:55.993582043 [2024-10-10 11:40:55] frigate.config WARNING : Customizing more than a detector model path is unsupported.
2024-10-10 13:40:56 2024-10-10 11:40:56.020664837 [2024-10-10 11:40:56] peewee_migrate.logs INFO : Starting migrations
2024-10-10 13:40:56 2024-10-10 11:40:56.020768675 [2024-10-10 11:40:56] peewee_migrate.logs INFO : There is nothing to migrate
2024-10-10 13:40:56 2024-10-10 11:40:56.028843680 [2024-10-10 11:40:56] frigate.app INFO : Recording process started: 521
2024-10-10 13:40:56 2024-10-10 11:40:56.028989007 [2024-10-10 11:40:56] frigate.app INFO : Recording process started: 522
2024-10-10 13:40:56 2024-10-10 11:40:56.031357206 [2024-10-10 11:40:56] frigate.app INFO : go2rtc process pid: 98
2024-10-10 13:40:56 2024-10-10 11:40:56.053361517 [2024-10-10 11:40:56] frigate.app INFO : Output process started: 550
2024-10-10 13:40:56 2024-10-10 11:40:56.057773938 [2024-10-10 11:40:56] detector.cpu1 INFO : Starting detection process: 549
2024-10-10 13:40:56 2024-10-10 11:40:56.058357550 [2024-10-10 11:40:56] frigate.detectors WARNING : CPU detectors are not recommended and should only be used for testing or for trial purposes.
2024-10-10 13:40:56 2024-10-10 11:40:56.078273906 [2024-10-10 11:40:56] frigate.app INFO : Camera processor started for test1: 571
2024-10-10 13:40:56 2024-10-10 11:40:56.078554633 [2024-10-10 11:40:56] frigate.app INFO : Camera processor started for test2: 576
2024-10-10 13:40:56 2024-10-10 11:40:56.084233668 [2024-10-10 11:40:56] frigate.app INFO : Camera processor started for test9: 583
2024-10-10 13:40:56 2024-10-10 11:40:56.099947124 [2024-10-10 11:40:56] frigate.app INFO : Camera processor started for test10: 595
2024-10-10 13:40:56 2024-10-10 11:40:56.101130436 [2024-10-10 11:40:56] frigate.app INFO : Camera processor started for test14: 603
2024-10-10 13:40:56 2024-10-10 11:40:56.101363538 [2024-10-10 11:40:56] frigate.app INFO : Camera processor started for test15: 611
2024-10-10 13:40:56 2024-10-10 11:40:56.106284132 [2024-10-10 11:40:56] frigate.app INFO : Capture process started for test1: 619
2024-10-10 13:40:56 2024-10-10 11:40:56.113995746 [2024-10-10 11:40:56] frigate.app INFO : Capture process started for test2: 629
2024-10-10 13:40:56 2024-10-10 11:40:56.119826736 [2024-10-10 11:40:56] frigate.app INFO : Capture process started for test9: 635
2024-10-10 13:40:56 2024-10-10 11:40:56.125204633 [2024-10-10 11:40:56] frigate.app INFO : Capture process started for test10: 640
2024-10-10 13:40:56 2024-10-10 11:40:56.131669371 [2024-10-10 11:40:56] frigate.app INFO : Capture process started for test14: 644
2024-10-10 13:40:56 2024-10-10 11:40:56.141104091 [2024-10-10 11:40:56] frigate.app INFO : Capture process started for test15: 648
2024-10-10 13:40:59 2024-10-10 11:40:59.421340182 Process detector:cpu1:
2024-10-10 13:40:59 2024-10-10 11:40:59.422013940 Traceback (most recent call last):
2024-10-10 13:40:59 2024-10-10 11:40:59.422056201 File "/usr/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap
2024-10-10 13:40:59 2024-10-10 11:40:59.422057095 self.run()
2024-10-10 13:40:59 2024-10-10 11:40:59.422069815 File "/usr/lib/python3.9/multiprocessing/process.py", line 108, in run
2024-10-10 13:40:59 2024-10-10 11:40:59.422070614 self._target(*self._args, **self._kwargs)
2024-10-10 13:40:59 2024-10-10 11:40:59.422093669 File "/opt/frigate/frigate/object_detection.py", line 125, in run_detector
2024-10-10 13:40:59 2024-10-10 11:40:59.422094555 detections = object_detector.detect_raw(input_frame)
2024-10-10 13:40:59 2024-10-10 11:40:59.422104556 File "/opt/frigate/frigate/object_detection.py", line 75, in detect_raw
2024-10-10 13:40:59 2024-10-10 11:40:59.422105564 return self.detect_api.detect_raw(tensor_input=tensor_input)
2024-10-10 13:40:59 2024-10-10 11:40:59.422128464 File "/opt/frigate/frigate/detectors/plugins/cpu_tfl.py", line 46, in detect_raw
2024-10-10 13:40:59 2024-10-10 11:40:59.422129518 scores = self.interpreter.tensor(self.tensor_output_details[2]["index"])()[0]
2024-10-10 13:40:59 2024-10-10 11:40:59.422150212 IndexError: list index out of range
2024-10-10 13:41:01 2024-10-10 11:41:01.952765791 [2024-10-10 11:41:01] frigate.video ERROR : test10: Unable to read frames from ffmpeg process.
2024-10-10 13:41:01 2024-10-10 11:41:01.953095699 [2024-10-10 11:41:01] frigate.video ERROR : test9: Unable to read frames from ffmpeg process.
2024-10-10 13:41:01 2024-10-10 11:41:01.953170050 [2024-10-10 11:41:01] frigate.video ERROR : test10: ffmpeg process is not running. exiting capture thread...
2024-10-10 13:41:01 2024-10-10 11:41:01.953226731 [2024-10-10 11:41:01] frigate.video ERROR : test9: ffmpeg process is not running. exiting capture thread...
2024-10-10 13:41:10 2024-10-10 11:41:10.751699138 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/config HTTP/1.1" 200 27498 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.752729107 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/profile HTTP/1.1" 200 21 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.756946582 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 3 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.806176865 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test1/latest.webp?h=360&cache=1728560470766 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.807179427 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test10/latest.webp?h=360&cache=1728560470767 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.807928176 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test14/latest.webp?h=360&cache=1728560470767 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.807930660 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test15/latest.webp?h=360&cache=1728560470768 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.809862343 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test2/latest.webp?h=360&cache=1728560470768 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.810058308 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test9/latest.webp?h=360&cache=1728560470768 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.906300723 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560470818 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.916210359 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560470818 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.921932474 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560470818 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.923413895 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560470818 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.927928828 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560470818 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:10 2024-10-10 11:41:10.930695902 172.18.0.1 - - [10/Oct/2024:11:41:10 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560470818 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:12 2024-10-10 11:41:12.217161935 172.18.0.1 - - [10/Oct/2024:11:41:12 +0000] "GET /fonts/Inter-Medium.woff2 HTTP/1.1" 200 111380 "https://127.0.0.1:8971/assets/index-BsqM9WWT.css" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:12 2024-10-10 11:41:12.229357598 172.18.0.1 - - [10/Oct/2024:11:41:12 +0000] "GET /api/test1/latest.webp?h=360&cache=1728560472205 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:12 2024-10-10 11:41:12.246303287 172.18.0.1 - - [10/Oct/2024:11:41:12 +0000] "GET /api/test1/latest.webp?h=33&cache=1728560472205 HTTP/1.1" 200 196 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:13 2024-10-10 11:41:13.950735870 172.18.0.1 - - [10/Oct/2024:11:41:13 +0000] "GET /api/go2rtc/streams/test1 HTTP/1.1" 200 2221 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:15 2024-10-10 11:41:15.117410186 172.18.0.1 - - [10/Oct/2024:11:41:15 +0000] "GET /live/mse/api/ws?src=test1 HTTP/1.1" 101 744 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:15 2024-10-10 11:41:15.132970289 172.18.0.1 - - [10/Oct/2024:11:41:15 +0000] "GET /api/review?reviewed=1&before=1728560476&after=1728474076 HTTP/1.1" 200 3 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:15 2024-10-10 11:41:15.135485644 172.18.0.1 - - [10/Oct/2024:11:41:15 +0000] "GET /api/preview/all/start/1728471600/end/1728561600 HTTP/1.1" 404 49 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:15 2024-10-10 11:41:15.142279522 172.18.0.1 - - [10/Oct/2024:11:41:15 +0000] "GET /api/config HTTP/1.1" 200 27498 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:15 2024-10-10 11:41:15.156412335 172.18.0.1 - - [10/Oct/2024:11:41:15 +0000] "GET /api/review/summary?timezone=Europe%2FMadrid HTTP/1.1" 200 302 "https://127.0.0.1:8971/review" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.136770584 [2024-10-10 11:41:16] watchdog.test9 ERROR : Ffmpeg process crashed unexpectedly for test9.
2024-10-10 13:41:16 2024-10-10 11:41:16.136773581 [2024-10-10 11:41:16] watchdog.test9 ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-10-10 13:41:16 2024-10-10 11:41:16.136813385 [2024-10-10 11:41:16] ffmpeg.test9.detect ERROR : [rtsp @ 0x55ebcb2aaf40] Could not find codec parameters for stream 0 (Video: h264, none): unspecified size
2024-10-10 13:41:16 2024-10-10 11:41:16.136950665 [2024-10-10 11:41:16] ffmpeg.test9.detect ERROR : Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
2024-10-10 13:41:16 2024-10-10 11:41:16.136958982 [2024-10-10 11:41:16] ffmpeg.test9.detect ERROR : Output file #0 does not contain any stream
2024-10-10 13:41:16 2024-10-10 11:41:16.155058125 [2024-10-10 11:41:16] watchdog.test10 ERROR : Ffmpeg process crashed unexpectedly for test10.
2024-10-10 13:41:16 2024-10-10 11:41:16.155106070 [2024-10-10 11:41:16] watchdog.test10 ERROR : The following ffmpeg logs include the last 100 lines prior to exit.
2024-10-10 13:41:16 2024-10-10 11:41:16.155251072 [2024-10-10 11:41:16] ffmpeg.test10.detect ERROR : [rtsp @ 0x55c569b0df40] Could not find codec parameters for stream 0 (Video: hevc, none): unspecified size
2024-10-10 13:41:16 2024-10-10 11:41:16.155262818 [2024-10-10 11:41:16] ffmpeg.test10.detect ERROR : Consider increasing the value for the 'analyzeduration' (0) and 'probesize' (5000000) options
2024-10-10 13:41:16 2024-10-10 11:41:16.155265213 [2024-10-10 11:41:16] ffmpeg.test10.detect ERROR : Output file #0 does not contain any stream
2024-10-10 13:41:16 2024-10-10 11:41:16.303048628 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test1/latest.webp?h=360&cache=1728560476260 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.303587633 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test10/latest.webp?h=360&cache=1728560476260 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.304133863 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test14/latest.webp?h=360&cache=1728560476261 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.305600740 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test2/latest.webp?h=360&cache=1728560476261 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.306380050 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test15/latest.webp?h=360&cache=1728560476261 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.307452014 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test9/latest.webp?h=360&cache=1728560476262 HTTP/1.1" 499 0 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.329799056 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 3 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.366332011 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560476301 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.380107500 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560476302 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.384737252 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560476302 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.387959766 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560476303 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.396125737 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560476303 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.396128927 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560476302 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:16 2024-10-10 11:41:16.512496958 [2024-10-10 11:41:16] frigate.watchdog INFO : Detection appears to be stuck. Restarting detection process...
2024-10-10 13:41:16 2024-10-10 11:41:16.522578873 [2024-10-10 11:41:16] detector.cpu1 INFO : Starting detection process: 905
2024-10-10 13:41:16 2024-10-10 11:41:16.525201300 [2024-10-10 11:41:16] frigate.detectors WARNING : CPU detectors are not recommended and should only be used for testing or for trial purposes.
2024-10-10 13:41:16 2024-10-10 11:41:16.582732897 Process detector:cpu1:
2024-10-10 13:41:16 2024-10-10 11:41:16.583809238 Traceback (most recent call last):
2024-10-10 13:41:16 2024-10-10 11:41:16.583811141 File "/usr/lib/python3.9/multiprocessing/process.py", line 315, in _bootstrap
2024-10-10 13:41:16 2024-10-10 11:41:16.583811833 self.run()
2024-10-10 13:41:16 2024-10-10 11:41:16.583812604 File "/usr/lib/python3.9/multiprocessing/process.py", line 108, in run
2024-10-10 13:41:16 2024-10-10 11:41:16.583813293 self._target(*self._args, **self._kwargs)
2024-10-10 13:41:16 2024-10-10 11:41:16.583813975 File "/opt/frigate/frigate/object_detection.py", line 125, in run_detector
2024-10-10 13:41:16 2024-10-10 11:41:16.583814628 detections = object_detector.detect_raw(input_frame)
2024-10-10 13:41:16 2024-10-10 11:41:16.583827039 File "/opt/frigate/frigate/object_detection.py", line 75, in detect_raw
2024-10-10 13:41:16 2024-10-10 11:41:16.583827825 return self.detect_api.detect_raw(tensor_input=tensor_input)
2024-10-10 13:41:16 2024-10-10 11:41:16.583828542 File "/opt/frigate/frigate/detectors/plugins/cpu_tfl.py", line 46, in detect_raw
2024-10-10 13:41:16 2024-10-10 11:41:16.583836299 scores = self.interpreter.tensor(self.tensor_output_details[2]["index"])()[0]
2024-10-10 13:41:16 2024-10-10 11:41:16.583836996 IndexError: list index out of range
2024-10-10 13:41:16 2024-10-10 11:41:16.794037707 172.18.0.1 - - [10/Oct/2024:11:41:16 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560476770 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:17 2024-10-10 11:41:17.025294118 172.18.0.1 - - [10/Oct/2024:11:41:17 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560477006 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:17 2024-10-10 11:41:17.263231857 172.18.0.1 - - [10/Oct/2024:11:41:17 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560477244 HTTP/1.1" 200 15032 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:17 2024-10-10 11:41:17.403616113 172.18.0.1 - - [10/Oct/2024:11:41:17 +0000] "GET /live/mse/api/ws?src=test1 HTTP/1.1" 101 744 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.893855927 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/config HTTP/1.1" 200 27498 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.893863451 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/profile HTTP/1.1" 200 21 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.895630953 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/review?limit=10&severity=alert HTTP/1.1" 200 3 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.937760716 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560483876 HTTP/1.1" 200 15078 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.942615415 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560483876 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.944064046 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560483876 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.951209566 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560483876 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.951623782 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560483876 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:23 2024-10-10 11:41:23.957044179 172.18.0.1 - - [10/Oct/2024:11:41:23 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560483876 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.174125155 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560484155 HTTP/1.1" 200 15026 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.198852689 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560484171 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.411150341 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560484389 HTTP/1.1" 200 15170 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.435326487 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560484404 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.640529000 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560484623 HTTP/1.1" 200 14788 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.752069818 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560484645 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.960489085 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560484940 HTTP/1.1" 200 15022 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:24 2024-10-10 11:41:24.984382714 172.18.0.1 - - [10/Oct/2024:11:41:24 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560484956 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:25 2024-10-10 11:41:25.093061349 172.18.0.1 - - [10/Oct/2024:11:41:25 +0000] "GET /live/mse/api/ws?src=test1 HTTP/1.1" 101 744 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:25 2024-10-10 11:41:25.093296046 172.18.0.1 - - [10/Oct/2024:11:41:25 +0000] "GET /live/mse/api/ws?src=test10 HTTP/1.1" 101 118 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.404001669 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560486353 HTTP/1.1" 200 15234 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.421209062 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /live/mse/api/ws?src=test1 HTTP/1.1" 101 744 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.423186946 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560486354 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.430094033 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560486354 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.430098595 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560486354 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.435958454 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560486354 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.446298058 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560486354 HTTP/1.1" 200 34584 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.447239022 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /live/mse/api/ws?src=test10 HTTP/1.1" 101 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.514230813 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test1/latest.webp?h=288&cache=1728560486461 HTTP/1.1" 200 14772 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.517875006 [2024-10-10 11:41:26] frigate.watchdog INFO : Detection appears to have stopped. Exiting Frigate...
2024-10-10 13:41:26 s6-rc: info: service legacy-services: stopping
2024-10-10 13:41:26 s6-rc: info: service legacy-services successfully stopped
2024-10-10 13:41:26 s6-rc: info: service go2rtc-healthcheck: stopping
2024-10-10 13:41:26 s6-rc: info: service certsync: stopping
2024-10-10 13:41:26 2024-10-10 11:41:26.524325740 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test14/latest.webp?h=293&cache=1728560486462 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.526383928 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test2/latest.webp?h=288&cache=1728560486462 HTTP/1.1" 200 2970 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.526981333 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test15/latest.webp?h=293&cache=1728560486462 HTTP/1.1" 200 3056 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 2024-10-10 11:41:26.531103105 [INFO] The go2rtc-healthcheck service exited with code 256 (by signal 15)
2024-10-10 13:41:26 2024-10-10 11:41:26.531103559 [INFO] Service CERTSYNC exited with code 256 (by signal 15)
2024-10-10 13:41:26 s6-rc: info: service go2rtc-healthcheck successfully stopped
2024-10-10 13:41:26 2024-10-10 11:41:26.532938790 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test10/latest.webp?h=293&cache=1728560486462 HTTP/1.1" 200 19770 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 s6-rc: info: service certsync successfully stopped
2024-10-10 13:41:26 s6-rc: info: service nginx: stopping
2024-10-10 13:41:26 s6-rc: info: service certsync-log: stopping
2024-10-10 13:41:26 2024-10-10 11:41:26.533891958 172.18.0.1 - - [10/Oct/2024:11:41:26 +0000] "GET /api/test9/latest.webp?h=293&cache=1728560486462 HTTP/1.1" 200 34584 "https://127.0.0.1:8971/" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:130.0) Gecko/20100101 Firefox/130.0" "-"
2024-10-10 13:41:26 s6-rc: info: service certsync-log successfully stopped
2024-10-10 13:41:26 s6-rc: info: service nginx successfully stopped
2024-10-10 13:41:26 s6-rc: info: service nginx-log: stopping
2024-10-10 13:41:26 s6-rc: info: service frigate: stopping
2024-10-10 13:41:26 2024-10-10 11:41:26.624288576 [INFO] Service NGINX exited with code 0 (by signal 0)
2024-10-10 13:41:26 s6-rc: info: service nginx-log successfully stopped
2024-10-10 13:41:26 2024-10-10 11:41:26.627158738 [2024-10-10 11:41:26] frigate.app INFO : Flask has exited...
2024-10-10 13:41:26 2024-10-10 11:41:26.627918433 [2024-10-10 11:41:26] frigate.app INFO : Stopping...
2024-10-10 13:41:26 2024-10-10 11:41:26.629543306 [2024-10-10 11:41:26] frigate.storage INFO : Exiting storage maintainer...
2024-10-10 13:41:26 2024-10-10 11:41:26.629904351 [2024-10-10 11:41:26] frigate.events.cleanup INFO : Exiting event cleanup...
2024-10-10 13:41:26 2024-10-10 11:41:26.630123198 [2024-10-10 11:41:26] frigate.stats.emitter INFO : Exiting stats emitter...
2024-10-10 13:41:26 2024-10-10 11:41:26.630388966 [2024-10-10 11:41:26] frigate.record.cleanup INFO : Exiting recording cleanup...
2024-10-10 13:41:26 2024-10-10 11:41:26.630483976 [2024-10-10 11:41:26] frigate.ptz.autotrack INFO : Exiting autotracker...
2024-10-10 13:41:26 2024-10-10 11:41:26.630830482 [2024-10-10 11:41:26] frigate.watchdog INFO : Exiting watchdog...
2024-10-10 13:41:26 2024-10-10 11:41:26.632819011 [2024-10-10 11:41:26] frigate.app INFO : Waiting for capture process for test1 to stop
2024-10-10 13:41:26 2024-10-10 11:41:26.633837437 [2024-10-10 11:41:26] frigate.object_processing INFO : Exiting object processor...
2024-10-10 13:41:26 2024-10-10 11:41:26.634011898 [2024-10-10 11:41:26] watchdog.test1 INFO : Terminating the existing ffmpeg process...
2024-10-10 13:41:26 2024-10-10 11:41:26.634073641 [2024-10-10 11:41:26] watchdog.test1 INFO : Waiting for ffmpeg to exit gracefully...
2024-10-10 13:41:26 2024-10-10 11:41:26.714574377 [2024-10-10 11:41:26] frigate.app INFO : Waiting for capture process for test2 to stop
2024-10-10 13:41:26 2024-10-10 11:41:26.716057866 [2024-10-10 11:41:26] watchdog.test2 INFO : Terminating the existing ffmpeg process...
2024-10-10 13:41:26 2024-10-10 11:41:26.716265177 [2024-10-10 11:41:26] watchdog.test2 INFO : Waiting for ffmpeg to exit gracefully...
2024-10-10 13:41:26 2024-10-10 11:41:26.792685035 [2024-10-10 11:41:26] frigate.app INFO : Waiting for capture process for test9 to stop
2024-10-10 13:41:26 2024-10-10 11:41:26.793549105 [2024-10-10 11:41:26] watchdog.test9 INFO : Terminating the existing ffmpeg process...
2024-10-10 13:41:26 2024-10-10 11:41:26.793642983 [2024-10-10 11:41:26] watchdog.test9 INFO : Waiting for ffmpeg to exit gracefully...
2024-10-10 13:41:27 2024-10-10 11:41:27.546609141 [2024-10-10 11:41:27] frigate.events.maintainer INFO : Exiting event processor...
2024-10-10 13:41:27 2024-10-10 11:41:27.845328081 [2024-10-10 11:41:27] frigate.app INFO : Waiting for capture process for test10 to stop
2024-10-10 13:41:27 2024-10-10 11:41:27.846118501 [2024-10-10 11:41:27] watchdog.test10 INFO : Terminating the existing ffmpeg process...
2024-10-10 13:41:27 2024-10-10 11:41:27.846135947 [2024-10-10 11:41:27] watchdog.test10 INFO : Waiting for ffmpeg to exit gracefully...
2024-10-10 13:41:27 2024-10-10 11:41:27.909661225 [2024-10-10 11:41:27] frigate.app INFO : Waiting for capture process for test14 to stop
2024-10-10 13:41:27 2024-10-10 11:41:27.911068598 [2024-10-10 11:41:27] watchdog.test14 INFO : Terminating the existing ffmpeg process...
2024-10-10 13:41:27 2024-10-10 11:41:27.911290190 [2024-10-10 11:41:27] watchdog.test14 INFO : Waiting for ffmpeg to exit gracefully...
2024-10-10 13:41:27 2024-10-10 11:41:27.990303700 [2024-10-10 11:41:27] frigate.app INFO : Waiting for capture process for test15 to stop
2024-10-10 13:41:27 2024-10-10 11:41:27.991347719 [2024-10-10 11:41:27] watchdog.test15 INFO : Terminating the existing ffmpeg process...
2024-10-10 13:41:27 2024-10-10 11:41:27.991501696 [2024-10-10 11:41:27] watchdog.test15 INFO : Waiting for ffmpeg to exit gracefully...
2024-10-10 13:41:28 2024-10-10 11:41:28.073088698 [2024-10-10 11:41:28] frigate.app INFO : Waiting for process for test1 to stop
2024-10-10 13:41:28 2024-10-10 11:41:28.625073312 [2024-10-10 11:41:28] frigate.video INFO : test1: emptying frame queue
2024-10-10 13:41:28 2024-10-10 11:41:28.625196840 [2024-10-10 11:41:28] frigate.video INFO : test1: exiting subprocess
2024-10-10 13:41:28 2024-10-10 11:41:28.630692476 [2024-10-10 11:41:28] frigate.app INFO : Closing frame queue for test1
2024-10-10 13:41:29 2024-10-10 11:41:29.131852291 [2024-10-10 11:41:29] frigate.app INFO : Waiting for process for test2 to stop
2024-10-10 13:41:29 2024-10-10 11:41:29.366134752 [2024-10-10 11:41:29] frigate.video INFO : test2: emptying frame queue
2024-10-10 13:41:29 2024-10-10 11:41:29.366269263 [2024-10-10 11:41:29] frigate.video INFO : test2: exiting subprocess
2024-10-10 13:41:29 2024-10-10 11:41:29.371027491 [2024-10-10 11:41:29] frigate.app INFO : Closing frame queue for test2
2024-10-10 13:41:29 2024-10-10 11:41:29.872222397 [2024-10-10 11:41:29] frigate.app INFO : Waiting for process for test9 to stop
2024-10-10 13:41:30 2024-10-10 11:41:30.845091651 [2024-10-10 11:41:30] frigate.video INFO : test9: emptying frame queue
2024-10-10 13:41:30 2024-10-10 11:41:30.845167903 [2024-10-10 11:41:30] frigate.video INFO : test9: exiting subprocess
2024-10-10 13:41:30 2024-10-10 11:41:30.849338764 [2024-10-10 11:41:30] frigate.app INFO : Closing frame queue for test9
2024-10-10 13:41:31 2024-10-10 11:41:31.350265323 [2024-10-10 11:41:31] frigate.app INFO : Waiting for process for test10 to stop
2024-10-10 13:41:33 2024-10-10 11:41:33.244927474 [2024-10-10 11:41:33] frigate.video INFO : test10: emptying frame queue
2024-10-10 13:41:33 2024-10-10 11:41:33.245205947 [2024-10-10 11:41:33] frigate.video INFO : test10: exiting subprocess
2024-10-10 13:41:33 2024-10-10 11:41:33.250121187 [2024-10-10 11:41:33] frigate.app INFO : Closing frame queue for test10
2024-10-10 13:41:33 2024-10-10 11:41:33.752328588 [2024-10-10 11:41:33] frigate.app INFO : Waiting for process for test14 to stop
2024-10-10 13:41:34 2024-10-10 11:41:34.757011083 [2024-10-10 11:41:34] frigate.video INFO : test14: emptying frame queue
2024-10-10 13:41:34 2024-10-10 11:41:34.757015063 [2024-10-10 11:41:34] frigate.video INFO : test14: exiting subprocess
2024-10-10 13:41:34 2024-10-10 11:41:34.761306511 [2024-10-10 11:41:34] frigate.app INFO : Closing frame queue for test14
2024-10-10 13:41:35 2024-10-10 11:41:35.262795970 [2024-10-10 11:41:35] frigate.app INFO : Waiting for process for test15 to stop
2024-10-10 13:41:39 2024-10-10 11:41:39.417956560 [2024-10-10 11:41:39] frigate.video INFO : test15: emptying frame queue
2024-10-10 13:41:39 2024-10-10 11:41:39.417959829 [2024-10-10 11:41:39] frigate.video INFO : test15: exiting subprocess
2024-10-10 13:41:39 2024-10-10 11:41:39.423515834 [2024-10-10 11:41:39] frigate.app INFO : Closing frame queue for test15
2024-10-10 13:41:40 2024-10-10 11:41:40.426991516 [2024-10-10 11:41:40] frigate.app INFO : Detection queue closed
2024-10-10 13:41:40 2024-10-10 11:41:40.928458038 [2024-10-10 11:41:40] frigate.app INFO : Detected frames queue closed
2024-10-10 13:41:41 2024-10-10 11:41:41.430507927 [2024-10-10 11:41:41] frigate.app INFO : Timeline queue closed Install methodWindows WSL2 Object DetectorCPU (no coral) Screenshots of the Frigate UI's System metrics pagesCant put any since frigate enters a restart loop because detection fails. Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
is the line, so it appears it does not have the outputs set correctly |
Beta Was this translation helpful? Give feedback.
I haven't used mediapipe. You may just need to write a POC in python using the tensorflow lite library. Frigate's interface with the tflite models isn't very flexible because it prioritizes speed. I'm guessing Frigate will need to be modified to support different inputs and outputs.