Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Virsh list all in json

From John's Wiki
Revision as of 21:44, 28 November 2024 by Admin (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The following bash command will list all virsh guests in json.

echo "[ $(virsh list --all|grep -Ev 'Id|----'|awk '{print "{ \"id\": \""$1"\", \"name\": \""$2"\", \"state\": \""$3 $4"\"}," }'|head -n -1) {} ]"|jq -r

Output example:

[
  {
    "id": "38",
    "name": "Mac",
    "state": "running"
  },
  {
    "id": "39",
    "name": "Dennis",
    "state": "running"
  },
  {
    "id": "40",
    "name": "Charlie",
    "state": "running"
  },
...