When deleting home-assistant_v2.db, restarting Home Assistant, and SQL’ing the newly created home-assistant_v2.db, i still see flooding of the database:
select count(*) a, event_data
from events
group by event_data
order by a desc;
Small bump I guess there must be some kind of solution around this? Espcially in the context of the latest release ( Disable polling updates on any integration):
If there is no solution available for this, the new “disable polling update” feature is not very useful, imho. Nobody want to flood their database.
That’s not the event type. You’re looking at the event data… look at the event type with the matching event data and filter from there.
Also, that look’s like a service call event, so you probably won’t want to filter service calls. You’d be better off excluding the homeassistant domain.
FYI the entities filter does not work on events. You’re filtering out that entities state changes, not events. So your entities filter is just removing the history of your switch.