Frigate Face Recognition Notification

Hi,
I was using the below automation without any issues using Frigate 17.2 but now it stopped to work

alias: Face Recognition Notification
description: Send notification when a face is recognized by Frigate
triggers:
  - topic: frigate/tracked_object_update
    trigger: mqtt
conditions:
  - condition: template
    value_template: "{{ trigger.payload_json.type == 'face' }}"
  - condition: template
    value_template: "{{ trigger.payload_json.name != 'unknown' }}"
  - condition: template
    value_template: "{{ trigger.payload_json.score > 0.7 }}"
actions:
  - action: tts.cloud_say
    metadata: {}
    data:
      cache: false
      entity_id: media_player.cucina
      message: >-
        {{ trigger.payload_json.name }} è stato visto al
        {{trigger.payload_json.camera }} 

In Frigate yml I have the following config

mqtt:
  enabled: true
  host: xxx.xxx.x.xxx
  port: xxxx
  topic_prefix: frigate
  client_id: frigate
  user: xxxx
  password: xxxx
  stats_interval: 60
  qos: 0


Thanks for support

First step is to look at traces of your automation, from there you might find an indication where it stops

The last time it worked correctly was on end of May but Trace is now empty

By the way I have launched the automation with the following info

Force a trigger with your own face then, i 'm expecting a frigate topic mismatch or in that direction. No traces mean no triggers before HA, so look at logic in frigate or check mqtt topics

I agree, it seems something wrong with frigate/tracked_object_update

Frigate Documentation pages might help and
blakeblackshear/frigate · Discussions · GitHub is the official Frigate support hub and is another good place to get help with Frigate if you don’t get an answer here.