InfluxDB: state missing

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:
Screenshot 2023-05-19 111120

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?

Well, it’s there, you just try to average strings, which, adequately, InfluxDB tells you is not possible.

Aah, sh*t, you’re right! Found it! Thank you so much!!