{"id":3602,"date":"2024-02-02T10:38:19","date_gmt":"2024-02-02T09:38:19","guid":{"rendered":"https:\/\/kudzia.eu\/b\/?p=3602"},"modified":"2024-02-02T10:38:19","modified_gmt":"2024-02-02T09:38:19","slug":"kvm-listing-vms-with-their-memory-allocation","status":"publish","type":"post","link":"https:\/\/kudzia.eu\/b\/2024\/02\/kvm-listing-vms-with-their-memory-allocation\/","title":{"rendered":"KVM &#8211; listing VMs with their memory allocation"},"content":{"rendered":"\n<p>i needed to list all VMs on given KVM server and sort them by amount of RAM allocated to each.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>(for vm in $(virsh list --all --name|grep -v -e '^$'); do echo -n \"$vm \" ; virsh dumpxml \"$vm\" | grep \"memory unit\"|awk -F '(>|&lt;)' '{print $3}';   done) | sort -k2 -n\r<\/code><\/pre>\n\n\n\n<p>ugly but does the trick.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>i needed to list all VMs on given KVM server and sort them by amount of RAM allocated to each. ugly but does the trick.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[51],"tags":[49,123],"class_list":["post-3602","post","type-post","status-publish","format-standard","hentry","category-unimportant","tag-kvm","tag-virsh"],"_links":{"self":[{"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/posts\/3602","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/comments?post=3602"}],"version-history":[{"count":1,"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/posts\/3602\/revisions"}],"predecessor-version":[{"id":3603,"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/posts\/3602\/revisions\/3603"}],"wp:attachment":[{"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/media?parent=3602"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/categories?post=3602"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kudzia.eu\/b\/wp-json\/wp\/v2\/tags?post=3602"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}