From ec9993eb427c7bf26c8a7a0a5f27189a9f9820c5 Mon Sep 17 00:00:00 2001 From: Tony Stork Date: Sun, 9 Oct 2022 19:28:23 -0400 Subject: [PATCH] Added InfluxDB for long-term data storage --- configuration.yaml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/configuration.yaml b/configuration.yaml index 28b63ab..8713faa 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -69,4 +69,20 @@ climate: recorder: db_url: !secret mariadb_url - purge_keep_days: 30 \ No newline at end of file + purge_keep_days: 30 + +influxdb: + host: 192.168.1.26 + port: 8086 + database: homeassistant + username: homeassistant + password: !secret influxdb_pass + max_retries: 3 + default_measurement: state + exclude: + domains: + - automation + - script + - zone + entity_globs: + - sensor.*battery* \ No newline at end of file