What's Changed
* Add InfluxDB2 support by jbouwh in https://github.com/jbouwh/omnikdatalogger/pull/65
* add influxdb-client to Appdeamon packages by jbouwh in https://github.com/jbouwh/omnikdatalogger/pull/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.
yaml
system_packages: []
python_packages:
- cachetools
- dsmr-parser
- influxdb-client
init_commands: []
log_level: info
**Full Changelog**: https://github.com/jbouwh/omnikdatalogger/compare/v1.10.5...v1.11.0-beta2