kaizersoje
kaizersoje
I have set the `keep_days` parameter in my automations. I checked out the sensor `sensor.auto_backup` and found that `monitored_snapshots` is 0 and `purgeable_snapshots` is 0. What's wrong?
I have provided a copy of my service call below ``` service: auto_backup.snapshot_full data_template: name: "Full AutoBackup: {{ now().strftime('%a %d/%m/%y') }}" keep_days: 7 ```
I tried the service call below ``` service: auto_backup.snapshot_partial service_data: name: Test keep_days: 0.0014 ``` I can see that the `monitored_snapshots` is now showing 1
`purgeable_snapshots` is showing up as 1 too
My backups are triggering correctly. Below are the 2 automations I have ``` - alias: Perform Full Backup trigger: platform: time at: "01:30:00" condition: condition: time # Perform backup on...
I manually triggered and the automation successfully ran and created the backup. However, `monitored_snapshots` is still showing up as 0.
I saw this notification this morning Snapshot Failed. Name: Partial AutoBackup: Sat 14/03/20 Error: There may be a backup already in progress. I am not sure how this is possible.
I have attached the logs below from last night. The backup `Full AutoBackup: Mon 16/03/20 ` was created successfully. However, I noticed this in my notifications too, which I think...
I increased the timeout time to 40 minutes as the full backup took around 21 minutes. ``` 2020-03-18 01:30:00 DEBUG (MainThread) [custom_components.auto_backup] Creating snapshot Partial AutoBackup: Wed 18/03/20 2020-03-18 01:30:00...
Yes, the backups are getting created. I increased the timeout to 50 minutes but still the same issue. Full backup is a little under 1GB. Partial backup is just under...