Hello all,
I am currently sending my HA data to influxdb OSS and everything seems to work really well. Except that I would like to add more “tags” or fields to my output. For example, I use Kasa smart plugs and each smart plug has a bunch of entities. In InfluxDB (and Grafan, in the end), I want to have a dashboard where I just pick the device and have all of the entities filtered. I tried adding “device” “device_name” etc to my config file, but nothing has worked so far. Here is what I am using in my config file:
influxdb:
api_version: 2
ssl: false
host: [IP_ADDR]
port: 8086
token: [API TOKEN]
organization: homelab
bucket: home_assistant
tags:
source: HA
tags_attributes:
- friendly_name
default_measurement: units
exclude:
entity_globs:
Thank you for any assistance you can provide!!