Hi All,
I have my Proxmox 2nd node all running great and efficiently. I installed Grafana and the latest version of Influxdb inside a container and works like a champ.
I have running lxc containers info missing and wondered if anyone has any idea what the correct measurement under system to use for showing LXC containers running on the node
I am getting network info from LXC inside the graph with I/O etc. is uptime the correct parameter to use? I have checked my DB and I am getting all info into the DB.
thanks for any assistance.
I have my Proxmox 2nd node all running great and efficiently. I installed Grafana and the latest version of Influxdb inside a container and works like a champ.
I have running lxc containers info missing and wondered if anyone has any idea what the correct measurement under system to use for showing LXC containers running on the node
I am getting network info from LXC inside the graph with I/O etc. is uptime the correct parameter to use? I have checked my DB and I am getting all info into the DB.
Code:
SELECT last(uptime) AS "uptime" FROM "system" WHERE ("object" = 'lxc') AND ("nodename" =~ /^$node$/) AND time > (now() - 10m) AND uptime > 0 GROUP BY "host" limit 1
thanks for any assistance.