Proxmox and memory: Difference between revisions

From DWIKI
(Created page with " = Docs = *[https://pve.proxmox.com/wiki/Dynamic_Memory_Management Dynamic Memory Management] = Clues = == pvesh == pvesh get /cluster/resources Get current configurati...")
 
mNo edit summary
Line 21: Line 21:


  pvesh get /cluster/resources --output-format json |jq '.[] | select(.id=="qemu/105") | .mem'
  pvesh get /cluster/resources --output-format json |jq '.[] | select(.id=="qemu/105") | .mem'
[[Category:Proxmox]]

Revision as of 18:06, 24 February 2022

Docs

Clues

pvesh

pvesh get /cluster/resources

Get current configuration of VM 105

pvesh get /nodes/nuc/qemu/105/status/current

Now to get maxmem given to VM 105

pvesh get /nodes/nuc/qemu/105/status/current --output-format json | jq '.maxmem'

Get memory usage

pvesh get /cluster/resources --output-format json |jq '.[] | select(.id=="qemu/105") | .mem'