Skip to content

v1.11.0

Pre-release
Pre-release

Choose a tag to compare

@jbouwh jbouwh released this 21 Feb 18:36
· 34 commits to dev since this release
b1f3ffc

What's Changed

  • Add InfluxDB2 support by @jbouwh in #65
  • add influxdb-client to Appdeamon packages by @jbouwh in #66

New InfluxDB plugin settings in the section output.influxdb in of apps.yaml or config.yaml

key optional type default description
ssl True bool false Use SSL. Set to true if the URL starts with https://
verify_ssl True bool true By default a certificate is validated. Set to false to disable validation.
ssl_ca_cert True string (none) Set an alternative CA cert. (InfluxDB 2.x client only)
org True string (none) The InfluxDB2 organisation (InfluxDB 2.x only)
bucket True string (none) The InfluxDB2 bucket to write to (InfluxDB 2.x only)
token True string (none) The InfluxDB2 authentication token (InfluxDB 2.x only)

To use InfluxDB 2 natively with AppDeamon (HACS) you need to add influxdb-client to the python_packages or the app-daemon config.

system_packages: []
python_packages:
  - cachetools
  - dsmr-parser
  - influxdb-client
init_commands: []
log_level: info

Full Changelog: v1.10.5...v1.11.0-beta2