Hi folks, I’m new to Telegraf and InfluxDB, so please bare with me
My setup:
- Telegraf on Debian (Proxmox) sending data to InfluxDB in the local network.
- Metrics are being sent to InfluxDB as intended on 3 different Proxmox node
Issue:
One node has 2 NVMe drives and each has a sensor:
nvme-pci-0200
Adapter: PCI adapter
Composite: +47.9°C (low = -5.2°C, high = +83.8°C)
(crit = +87.8°C)
nvme-pci-0400
Adapter: PCI adapter
Composite: +41.9°C (low = -0.1°C, high = +76.8°C)
(crit = +79.8°C)
but in Influx DB I only see 1 nvme_composite
metrics
When I run:
telegraf -config /etc/telegraf/telegraf.conf -test
I get the following output (truncated):
> temp,host=pve1,sensor=nvme_composite temp=48.85 1721506434000000000
> temp,host=pve1,sensor=nvme_composite temp=41.85 1721506434000000000
The sensor names are both nvme_composite
, which might be why I only see one temperature reading.
Is there a way to tag/rename these sensors without messing too much with my PVE node?
Thanks!