@WeeBull wrote:
I’m having some problems with data getting into InfluxDB from homeassistant (0.100.2 using the official docker image). Some stuff is fine, appearing under
climate.kitchen
absolutely fine. The following query works fine.FROM homeassistant climate.landing WHERE SELECT field (current_temperature) mean () GROUP BY time ($__interval) fill (null)
What’s odd is that some sensors seem to be being placed under tables which are named after the units of measurement. For example, the data rates from my router are appearing under
kbytes/sec
and notsensor.mikrotik_router_kbyte_sec_received
:FROM homeassistant kbyte/sec WHERE SELECT field (value) mean () GROUP BY time ($__interval) fill (linear)
This is also happening with other components measurements like heating power setting which is being sent to the table
%
My YAML for influx DB is very simple:
influxdb: host: localhost port: 8086 database: homeassistant max_retries: 3
Am I missing some config to explicitly state how to name tables?
Posts: 2
Participants: 1