New at this, and figuring things out as I go, so patience is appreciated.
Environment
Ubuntu 20.04, XCP-NG, InfluxDB console v1.6.4
Problem/Question
Hosts feeding netdata via [backend] to InfluxDB configured for opentsdb. “Shared” measurements aren’t getting host populated. Only one of four hosts is getting populated into the “host” tag key. But all hosts are successfully sending data to the InfluxDB, because there are other measurements that contain UUIDs that can be traced back to specific hosts.
Query in Influx:
> select * from "netdata.ipmi.temperatures_c.01_Inlet_Ambient" order by time desc limit 5
name: netdata.ipmi.temperatures_c.01_Inlet_Ambient
time host value
---- ---- -----
1630370950000000000 host3.domain.com 30
1630370940000000000 host3.domain.com 30
1630370930000000000 host3.domain.com 30
1630370920000000000 host3.domain.com 30
1630370910000000000 host3.domain.com 30
> show tag keys from "netdata.ipmi.temperatures_c.01_Inlet_Ambient"
name: netdata.ipmi.temperatures_c.01_Inlet_Ambient
tagKey
------
host
So it is showing that the “host” column’s value is the only tag key, but
> show tag values from "netdata.ipmi.temperatures_c.01_Inlet_Ambient" with key = "host"
>
It isn’t returning any values for that key “host” at all, even though it is showing “host3.domain.com” as the value of the tag key in the initial query.
What I expected to happen
I expected it to return at least “host3.domain.com,” and hoping for all four hosts to allow for a filtered query of the measurement in Grafana.
Is there something I should be looking at to help troubleshoot?