I'm currently setting up external metric and have some issue with data that I was expecting but there is no data. I'm using Grafana with influxdb and use this wiki page for guidence
https://pve.proxmox.com/wiki/External_Metric_Server
This work perfect for VMs and LXCs but not for the Host (Proxmox)
SQL I currently using in grafana
If i try this with nodes (proxmox host) there is no data.
or
The same issue with disk IOPS and data read/write. If I have to do modification to get this working is there possible to include data from ceph and temprature sensors? I know that using telegraf I can fix this, but feels this is kinda uncessary when proxmox have this function inluded
https://pve.proxmox.com/wiki/External_Metric_Server
Code:
influxdb:
server monitor.mylocaldomain.no
port 8089
This work perfect for VMs and LXCs but not for the Host (Proxmox)
SQL I currently using in grafana
Code:
SELECT derivative(mean("netin"), 1s) AS "$host" FROM "nics" WHERE ("object" = 'qemu') AND $timeFilter GROUP BY time($__interval), "host" fill(null)
Code:
SELECT derivative(mean("netin"), 1s) AS "$host" FROM "nics" WHERE ("object" = 'nodes') AND $timeFilter GROUP BY time($__interval), "host" fill(null)
Code:
SELECT derivative(mean("netin"), 1s) AS "$host" FROM "system" WHERE ("object" = 'nodes') AND $timeFilter GROUP BY time($__interval), "host" fill(null)
The same issue with disk IOPS and data read/write. If I have to do modification to get this working is there possible to include data from ceph and temprature sensors? I know that using telegraf I can fix this, but feels this is kinda uncessary when proxmox have this function inluded