I am using HassOS on a RPi4. I installed the AddOn of InfluDB via Supervisor and followed the installation instructions (https://www.home-assistant.io/integrations/influxdb/) for creation of user and database in InfluDB plus updating the configuration.yaml with the infuxDB section. I look at the Home Assistant log and InfluxDB log and neither contain errors. The Home Assistant log with Influx debug logging enabled reports that data is being sent to Influx but not seeing data in Influx. What can I look at to figure out this disconnect?
InfluxDB configuration
auth: true
reporting: true
ssl: true
certfile: fullchain.pem
keyfile: privkey.pem
envvars: []
log_level: debug
Home Assistant Configuration
influxdb:
host: a0d7b954-influxdb
port: 8086
database: homeassistant
username: homeassistant
password: xxxxxxxxxxxx
max_retries: 3
default_measurement: state
From the Hass Log:
2020-12-01 21:07:01 DEBUG (influxdb) [homeassistant.components.influxdb] Wrote 4 events.
2020-12-01 21:07:10 DEBUG (influxdb) [homeassistant.components.influxdb] Wrote 4 events.
2020-12-01 21:07:23 DEBUG (influxdb) [homeassistant.components.influxdb] Wrote 1 events.
2020-12-01 21:07:31 DEBUG (influxdb) [homeassistant.components.influxdb] Wrote 5 events.
2020-12-01 21:07:40 DEBUG (influxdb) [homeassistant.components.influxdb] Wrote 4 events.
2020-12-01 21:07:57 DEBUG (influxdb) [homeassistant.components.influxdb] Wrote 1 events.
From InfluDB Log:
Add-on: InfluxDB
Scalable datastore for metrics, events, and real-time analytics
-----------------------------------------------------------
Add-on version: 3.7.9
You are running the latest version of this add-on.
System: HassOS 4.16 (aarch64 / raspberrypi4-64)
Home Assistant Core: 0.118.4
Home Assistant Supervisor: 2020.11.0
…
[20:53:29] INFO: Starting NGinx...
time="2020-12-01T21:07:08-05:00" level=debug msg=Request component=server method=GET remote_addr="127.0.0.1:49530" url=/api/hassio_ingress/7Im6aohvX-q8pgEy3wB7tMC5-bYsD72Vt96zYCadMqo/src.3999f023.css
time="2020-12-01T21:07:08-05:00" level=info msg="Serving assets" component=server method=GET remote_addr="127.0.0.1:49530" url=/src.3999f023.css
Any help and where to look would be appreciated. I must be missing something subtle since there are very few posts on this integration.