I write my HA data in influxDB. This works fine, however the states are missing and I don’t know why!
Example of my SONOS Roam:
And this is how the state change looks like in HA:
This is my configuration.yaml:
influxdb:
host: 10.10.0.111
ssl: false
verify_ssl: false
port: 8086
api_version: 2
organization: LambdaCore
bucket: homeassistant
max_retries: 5
tags:
source: HA
tags_attributes:
- friendly_name
default_measurement: units
exclude:
domains:
- persistent_notification
token: !secret influx_token
include:
domains:
- sensor
- binary_sensor
- climate
- sun
- input_boolean
- plant
- light
- media_player
- switch
- device_tracker
- person
- zone
What do I need to change? What am I doing wrong?