Add recorder tuning and InfluxDB config snippets

This commit is contained in:
2026-07-01 23:42:47 +00:00
parent bdd5b1bfda
commit c4d86533c6

View File

@@ -0,0 +1,30 @@
# Home Assistant Configuration Snippets
#
# These snippets were added to /config/configuration.yaml on the HA host (10.10.0.123).
# Dated: 2026-July
# =============================================================================
# Recorder Tuning
# =============================================================================
# Reduces SQLite DB write frequency and keeps the local database small.
# Long-term historical data is stored in InfluxDB (13-month retention).
#
# Added to configuration.yaml:
recorder:
purge_keep_days: 7
commit_interval: 30
# =============================================================================
# InfluxDB (REMOVED - using UI integration instead)
# =============================================================================
# The YAML influxdb config did NOT work with HA 2026.3.1.
# Integration was set up via UI: Settings → Devices & Services → InfluxDB.
#
# If you find the following block in configuration.yaml, it should be removed:
#
# influxdb: # <-- THIS BLOCK WAS REMOVED
# host: 10.10.0.41 # DO NOT USE
# port: 8086 # DO NOT USE
# ...
#
# The UI integration stores its config internally and does not need YAML.