Hi
First of all I am not sure if this is a real issue or a misconception on my configuration. let me explain:
I am starting to add some automations to keep my DB size under control.
I have created some automations to purge entities on different periods.
My automations are like this:
alias: DATA - Purge - S (3Months)
description: ""
trigger:
- platform: time
at: "00:30:00"
condition: []
action:
- service: recorder.purge_entities
data:
keep_days: 90
target:
entity_id:
- person.l0bit0
- update.home_assistant_supervisor_update
- update.home_assistant_core_update
Automation was executed last night with no error, but data older than 3 months fare still visible on Influx DB (Grafana):
i.e.
- I am comparing two entities (AEMET Temperature and Netatmo EXT Temperature)
- AEMET temperature is purged fro 3 months, and Netatmo EXT is not purged, so i should have all data.
- history info looks good, as AEMET temp. is only showed till May 19th:
- Data is still available on Grafana:
I assume data purged should be also deleted from Grafana
Any Idea? There is a different way to clean data on InfluxDB data?
thanks