P pizza Renowned Member Nov 7, 2015 96 8 73 Jun 2, 2022 #1 Is there a way to get a summary from the used RAM for all LXC containers in a pool? Last edited: Jun 2, 2022
shrdlicka Proxmox Retired Staff Retired Staff May 2, 2022 583 82 28 Jun 2, 2022 #2 Hi on the command line, you could do something like this. Get the json output and then use jq to add the memory field values: Code: pvesh get /pools/<POOL NAME> --output-format json | jq '[.members[].mem] | add' Reactions: pizza
Hi on the command line, you could do something like this. Get the json output and then use jq to add the memory field values: Code: pvesh get /pools/<POOL NAME> --output-format json | jq '[.members[].mem] | add'