Alternative to MQTT server #19959
Replies: 1 comment 3 replies
-
Yes, there are alternatives to MQTT for accessing Frigate events: REST API: Frigate exposes a REST API that you can query for events and statistics(1). The same data available through MQTT stats is also available at Database Access: Frigate stores event data in a SQLite database located at Home Assistant Integration: If you're using Home Assistant, the official Frigate integration provides access to events and entities without requiring direct MQTT interaction(4). The integration still requires MQTT to be configured between Frigate and Home Assistant, but you can access the data through Home Assistant's interface and automations(4). However, MQTT remains the primary real-time event notification system for Frigate(1). The platform is specifically designed to communicate over MQTT for easy integration into other systems(1), and many of the real-time features depend on this messaging system(2). If you need real-time motion detection events without MQTT, you would need to implement polling of the REST API or database, which won't provide the same immediate notification capabilities that MQTT offers. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I’m currently capturing Frigate’s motion detection events via MQTT. Is there a way to get these events without using MQTT—for example, through standard output, logs, or another interface?
Beta Was this translation helpful? Give feedback.
All reactions