Home Assistant and influxdb2

Good morning,

I have configured Home Assistant to use an influxdb2 on a virtual seperate server togther with grafana. HA is writing some sensor data to the influxdb, but only for 2 entities of the measurment °C, not for all of them. can’t find my fault in the configuration.

Here is my HA configuration.yaml:

influxdb:
  api_version: 2
  host: influxdb.example.com
  token: yyyxxxzzz
  organization: myorg
  bucket: homeassistant
  ssl: true
  max_retries: 3
  tags:
    source: HA
  tags_attributes:
    - friendly_name
  default_measurement: state
  exclude:
    entities:
      - zone.home
    domains:
      - persistant_notification
      - person
  include:
    domains:
      - sensor
      - binary_sensor
      - sun
      - light
      - cover
    entities:
      - weather.home

As already mentioned I can see data in the influxdb2 explorer, but not for all entities:

reagrds,
Stefan

Especially I want to visualize the temperatures of the climate entities, so I added:

include
    domains:
       - climate

in the configuration.yaml because I didn’t see temperatures for the climate entities. but as of now I don’t see any climate entries in the influxdb2.

In HA I have several room thermostats from Homemaitc IP local integration, but only two are shown in the dev tools as sensors, can anyone explain why ? should I activate the entities ?

Found the data under “state” entry in influxdb, there are all my climates now. But still curious where my room thermostats are.