qapi: Complete system_powerdown conversion
[qemu-kvm.git] / qmp-commands.hx
blob4fcb92ccfa7bea7133f8e40143d539f565dbbd96
1 HXCOMM QMP dispatch table and documentation
2 HXCOMM Text between SQMP and EQMP is copied to the QMP documention file and
3 HXCOMM does not show up in the other formats.
5 SQMP
6 QMP Supported Commands
7 ----------------------
9 This document describes all commands currently supported by QMP.
11 Most of the time their usage is exactly the same as in the user Monitor, this
12 means that any other document which also describe commands (the manpage,
13 QEMU's manual, etc) can and should be consulted.
15 QMP has two types of commands: regular and query commands. Regular commands
16 usually change the Virtual Machine's state someway, while query commands just
17 return information. The sections below are divided accordingly.
19 It's important to observe that all communication examples are formatted in
20 a reader-friendly way, so that they're easier to understand. However, in real
21 protocol usage, they're emitted as a single line.
23 Also, the following notation is used to denote data flow:
25 -> data issued by the Client
26 <- Server data response
28 Please, refer to the QMP specification (QMP/qmp-spec.txt) for detailed
29 information on the Server command and response formats.
31 NOTE: This document is temporary and will be replaced soon.
33 1. Stability Considerations
34 ===========================
36 The current QMP command set (described in this file) may be useful for a
37 number of use cases, however it's limited and several commands have bad
38 defined semantics, specially with regard to command completion.
40 These problems are going to be solved incrementally in the next QEMU releases
41 and we're going to establish a deprecation policy for badly defined commands.
43 If you're planning to adopt QMP, please observe the following:
45 1. The deprecation policy will take effect and be documented soon, please
46 check the documentation of each used command as soon as a new release of
47 QEMU is available
49 2. DO NOT rely on anything which is not explicit documented
51 3. Errors, in special, are not documented. Applications should NOT check
52 for specific errors classes or data (it's strongly recommended to only
53 check for the "error" key)
55 2. Regular Commands
56 ===================
58 Server's responses in the examples below are always a success response, please
59 refer to the QMP specification for more details on error responses.
61 EQMP
64 .name = "quit",
65 .args_type = "",
66 .mhandler.cmd_new = qmp_marshal_input_quit,
69 SQMP
70 quit
71 ----
73 Quit the emulator.
75 Arguments: None.
77 Example:
79 -> { "execute": "quit" }
80 <- { "return": {} }
82 EQMP
85 .name = "eject",
86 .args_type = "force:-f,device:B",
87 .params = "[-f] device",
88 .help = "eject a removable medium (use -f to force it)",
89 .user_print = monitor_user_noop,
90 .mhandler.cmd_new = do_eject,
93 SQMP
94 eject
95 -----
97 Eject a removable medium.
99 Arguments:
101 - force: force ejection (json-bool, optional)
102 - device: device name (json-string)
104 Example:
106 -> { "execute": "eject", "arguments": { "device": "ide1-cd0" } }
107 <- { "return": {} }
109 Note: The "force" argument defaults to false.
111 EQMP
114 .name = "change",
115 .args_type = "device:B,target:F,arg:s?",
116 .params = "device filename [format]",
117 .help = "change a removable medium, optional format",
118 .user_print = monitor_user_noop,
119 .mhandler.cmd_new = do_change,
122 SQMP
123 change
124 ------
126 Change a removable medium or VNC configuration.
128 Arguments:
130 - "device": device name (json-string)
131 - "target": filename or item (json-string)
132 - "arg": additional argument (json-string, optional)
134 Examples:
136 1. Change a removable medium
138 -> { "execute": "change",
139 "arguments": { "device": "ide1-cd0",
140 "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
141 <- { "return": {} }
143 2. Change VNC password
145 -> { "execute": "change",
146 "arguments": { "device": "vnc", "target": "password",
147 "arg": "foobar1" } }
148 <- { "return": {} }
150 EQMP
153 .name = "screendump",
154 .args_type = "filename:F",
155 .params = "filename",
156 .help = "save screen into PPM image 'filename'",
157 .user_print = monitor_user_noop,
158 .mhandler.cmd_new = do_screen_dump,
161 SQMP
162 screendump
163 ----------
165 Save screen into PPM image.
167 Arguments:
169 - "filename": file path (json-string)
171 Example:
173 -> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
174 <- { "return": {} }
176 EQMP
179 .name = "stop",
180 .args_type = "",
181 .mhandler.cmd_new = qmp_marshal_input_stop,
184 SQMP
185 stop
186 ----
188 Stop the emulator.
190 Arguments: None.
192 Example:
194 -> { "execute": "stop" }
195 <- { "return": {} }
197 EQMP
200 .name = "cont",
201 .args_type = "",
202 .params = "",
203 .help = "resume emulation",
204 .user_print = monitor_user_noop,
205 .mhandler.cmd_new = do_cont,
208 SQMP
209 cont
210 ----
212 Resume emulation.
214 Arguments: None.
216 Example:
218 -> { "execute": "cont" }
219 <- { "return": {} }
221 EQMP
224 .name = "system_reset",
225 .args_type = "",
226 .mhandler.cmd_new = qmp_marshal_input_system_reset,
229 SQMP
230 system_reset
231 ------------
233 Reset the system.
235 Arguments: None.
237 Example:
239 -> { "execute": "system_reset" }
240 <- { "return": {} }
242 EQMP
245 .name = "system_powerdown",
246 .args_type = "",
247 .mhandler.cmd_new = qmp_marshal_input_system_powerdown,
250 SQMP
251 system_powerdown
252 ----------------
254 Send system power down event.
256 Arguments: None.
258 Example:
260 -> { "execute": "system_powerdown" }
261 <- { "return": {} }
263 EQMP
266 .name = "device_add",
267 .args_type = "device:O",
268 .params = "driver[,prop=value][,...]",
269 .help = "add device, like -device on the command line",
270 .user_print = monitor_user_noop,
271 .mhandler.cmd_new = do_device_add,
274 SQMP
275 device_add
276 ----------
278 Add a device.
280 Arguments:
282 - "driver": the name of the new device's driver (json-string)
283 - "bus": the device's parent bus (device tree path, json-string, optional)
284 - "id": the device's ID, must be unique (json-string)
285 - device properties
287 Example:
289 -> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
290 <- { "return": {} }
292 Notes:
294 (1) For detailed information about this command, please refer to the
295 'docs/qdev-device-use.txt' file.
297 (2) It's possible to list device properties by running QEMU with the
298 "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
300 EQMP
303 .name = "device_del",
304 .args_type = "id:s",
305 .params = "device",
306 .help = "remove device",
307 .user_print = monitor_user_noop,
308 .mhandler.cmd_new = do_device_del,
311 SQMP
312 device_del
313 ----------
315 Remove a device.
317 Arguments:
319 - "id": the device's ID (json-string)
321 Example:
323 -> { "execute": "device_del", "arguments": { "id": "net1" } }
324 <- { "return": {} }
326 EQMP
329 .name = "cpu",
330 .args_type = "index:i",
331 .mhandler.cmd_new = qmp_marshal_input_cpu,
334 SQMP
338 Set the default CPU.
340 Arguments:
342 - "index": the CPU's index (json-int)
344 Example:
346 -> { "execute": "cpu", "arguments": { "index": 0 } }
347 <- { "return": {} }
349 Note: CPUs' indexes are obtained with the 'query-cpus' command.
351 EQMP
354 .name = "memsave",
355 .args_type = "val:l,size:i,filename:s",
356 .params = "addr size file",
357 .help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
358 .user_print = monitor_user_noop,
359 .mhandler.cmd_new = do_memory_save,
362 SQMP
363 memsave
364 -------
366 Save to disk virtual memory dump starting at 'val' of size 'size'.
368 Arguments:
370 - "val": the starting address (json-int)
371 - "size": the memory size, in bytes (json-int)
372 - "filename": file path (json-string)
374 Example:
376 -> { "execute": "memsave",
377 "arguments": { "val": 10,
378 "size": 100,
379 "filename": "/tmp/virtual-mem-dump" } }
380 <- { "return": {} }
382 Note: Depends on the current CPU.
384 EQMP
387 .name = "pmemsave",
388 .args_type = "val:l,size:i,filename:s",
389 .params = "addr size file",
390 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
391 .user_print = monitor_user_noop,
392 .mhandler.cmd_new = do_physical_memory_save,
395 SQMP
396 pmemsave
397 --------
399 Save to disk physical memory dump starting at 'val' of size 'size'.
401 Arguments:
403 - "val": the starting address (json-int)
404 - "size": the memory size, in bytes (json-int)
405 - "filename": file path (json-string)
407 Example:
409 -> { "execute": "pmemsave",
410 "arguments": { "val": 10,
411 "size": 100,
412 "filename": "/tmp/physical-mem-dump" } }
413 <- { "return": {} }
415 EQMP
418 .name = "inject-nmi",
419 .args_type = "",
420 .params = "",
421 .help = "",
422 .user_print = monitor_user_noop,
423 .mhandler.cmd_new = do_inject_nmi,
426 SQMP
427 inject-nmi
428 ----------
430 Inject an NMI on guest's CPUs.
432 Arguments: None.
434 Example:
436 -> { "execute": "inject-nmi" }
437 <- { "return": {} }
439 Note: inject-nmi is only supported for x86 guest currently, it will
440 returns "Unsupported" error for non-x86 guest.
442 EQMP
445 .name = "migrate",
446 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
447 .params = "[-d] [-b] [-i] uri",
448 .help = "migrate to URI (using -d to not wait for completion)"
449 "\n\t\t\t -b for migration without shared storage with"
450 " full copy of disk\n\t\t\t -i for migration without "
451 "shared storage with incremental copy of disk "
452 "(base image shared between src and destination)",
453 .user_print = monitor_user_noop,
454 .mhandler.cmd_new = do_migrate,
457 SQMP
458 migrate
459 -------
461 Migrate to URI.
463 Arguments:
465 - "blk": block migration, full disk copy (json-bool, optional)
466 - "inc": incremental disk copy (json-bool, optional)
467 - "uri": Destination URI (json-string)
469 Example:
471 -> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
472 <- { "return": {} }
474 Notes:
476 (1) The 'query-migrate' command should be used to check migration's progress
477 and final result (this information is provided by the 'status' member)
478 (2) All boolean arguments default to false
479 (3) The user Monitor's "detach" argument is invalid in QMP and should not
480 be used
482 EQMP
485 .name = "migrate_cancel",
486 .args_type = "",
487 .params = "",
488 .help = "cancel the current VM migration",
489 .user_print = monitor_user_noop,
490 .mhandler.cmd_new = do_migrate_cancel,
493 SQMP
494 migrate_cancel
495 --------------
497 Cancel the current migration.
499 Arguments: None.
501 Example:
503 -> { "execute": "migrate_cancel" }
504 <- { "return": {} }
506 EQMP
509 .name = "migrate_set_speed",
510 .args_type = "value:o",
511 .params = "value",
512 .help = "set maximum speed (in bytes) for migrations",
513 .user_print = monitor_user_noop,
514 .mhandler.cmd_new = do_migrate_set_speed,
517 SQMP
518 migrate_set_speed
519 -----------------
521 Set maximum speed for migrations.
523 Arguments:
525 - "value": maximum speed, in bytes per second (json-int)
527 Example:
529 -> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
530 <- { "return": {} }
532 EQMP
535 .name = "migrate_set_downtime",
536 .args_type = "value:T",
537 .params = "value",
538 .help = "set maximum tolerated downtime (in seconds) for migrations",
539 .user_print = monitor_user_noop,
540 .mhandler.cmd_new = do_migrate_set_downtime,
543 SQMP
544 migrate_set_downtime
545 --------------------
547 Set maximum tolerated downtime (in seconds) for migrations.
549 Arguments:
551 - "value": maximum downtime (json-number)
553 Example:
555 -> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
556 <- { "return": {} }
558 EQMP
561 .name = "client_migrate_info",
562 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
563 .params = "protocol hostname port tls-port cert-subject",
564 .help = "send migration info to spice/vnc client",
565 .user_print = monitor_user_noop,
566 .mhandler.cmd_async = client_migrate_info,
567 .flags = MONITOR_CMD_ASYNC,
570 SQMP
571 client_migrate_info
572 ------------------
574 Set the spice/vnc connection info for the migration target. The spice/vnc
575 server will ask the spice/vnc client to automatically reconnect using the
576 new parameters (if specified) once the vm migration finished successfully.
578 Arguments:
580 - "protocol": protocol: "spice" or "vnc" (json-string)
581 - "hostname": migration target hostname (json-string)
582 - "port": spice/vnc tcp port for plaintext channels (json-int, optional)
583 - "tls-port": spice tcp port for tls-secured channels (json-int, optional)
584 - "cert-subject": server certificate subject (json-string, optional)
586 Example:
588 -> { "execute": "client_migrate_info",
589 "arguments": { "protocol": "spice",
590 "hostname": "virt42.lab.kraxel.org",
591 "port": 1234 } }
592 <- { "return": {} }
594 EQMP
597 .name = "netdev_add",
598 .args_type = "netdev:O",
599 .params = "[user|tap|socket],id=str[,prop=value][,...]",
600 .help = "add host network device",
601 .user_print = monitor_user_noop,
602 .mhandler.cmd_new = do_netdev_add,
605 SQMP
606 netdev_add
607 ----------
609 Add host network device.
611 Arguments:
613 - "type": the device type, "tap", "user", ... (json-string)
614 - "id": the device's ID, must be unique (json-string)
615 - device options
617 Example:
619 -> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
620 <- { "return": {} }
622 Note: The supported device options are the same ones supported by the '-net'
623 command-line argument, which are listed in the '-help' output or QEMU's
624 manual
626 EQMP
629 .name = "netdev_del",
630 .args_type = "id:s",
631 .params = "id",
632 .help = "remove host network device",
633 .user_print = monitor_user_noop,
634 .mhandler.cmd_new = do_netdev_del,
637 SQMP
638 netdev_del
639 ----------
641 Remove host network device.
643 Arguments:
645 - "id": the device's ID, must be unique (json-string)
647 Example:
649 -> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
650 <- { "return": {} }
653 EQMP
656 .name = "block_resize",
657 .args_type = "device:B,size:o",
658 .params = "device size",
659 .help = "resize a block image",
660 .user_print = monitor_user_noop,
661 .mhandler.cmd_new = do_block_resize,
664 SQMP
665 block_resize
666 ------------
668 Resize a block image while a guest is running.
670 Arguments:
672 - "device": the device's ID, must be unique (json-string)
673 - "size": new size
675 Example:
677 -> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
678 <- { "return": {} }
680 EQMP
683 .name = "blockdev-snapshot-sync",
684 .args_type = "device:B,snapshot-file:s?,format:s?",
685 .params = "device [new-image-file] [format]",
686 .user_print = monitor_user_noop,
687 .mhandler.cmd_new = do_snapshot_blkdev,
690 SQMP
691 blockdev-snapshot-sync
692 ----------------------
694 Synchronous snapshot of a block device. snapshot-file specifies the
695 target of the new image. If the file exists, or if it is a device, the
696 snapshot will be created in the existing file/device. If does not
697 exist, a new file will be created. format specifies the format of the
698 snapshot image, default is qcow2.
700 Arguments:
702 - "device": device name to snapshot (json-string)
703 - "snapshot-file": name of new image file (json-string)
704 - "format": format of new image (json-string, optional)
706 Example:
708 -> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0",
709 "snapshot-file":
710 "/some/place/my-image",
711 "format": "qcow2" } }
712 <- { "return": {} }
714 EQMP
717 .name = "balloon",
718 .args_type = "value:M",
719 .params = "target",
720 .help = "request VM to change its memory allocation (in MB)",
721 .user_print = monitor_user_noop,
722 .mhandler.cmd_async = do_balloon,
723 .flags = MONITOR_CMD_ASYNC,
726 SQMP
727 balloon
728 -------
730 Request VM to change its memory allocation (in bytes).
732 Arguments:
734 - "value": New memory allocation (json-int)
736 Example:
738 -> { "execute": "balloon", "arguments": { "value": 536870912 } }
739 <- { "return": {} }
741 EQMP
744 .name = "set_link",
745 .args_type = "name:s,up:b",
746 .params = "name on|off",
747 .help = "change the link status of a network adapter",
748 .user_print = monitor_user_noop,
749 .mhandler.cmd_new = do_set_link,
752 SQMP
753 set_link
754 --------
756 Change the link status of a network adapter.
758 Arguments:
760 - "name": network device name (json-string)
761 - "up": status is up (json-bool)
763 Example:
765 -> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
766 <- { "return": {} }
768 EQMP
771 .name = "getfd",
772 .args_type = "fdname:s",
773 .params = "getfd name",
774 .help = "receive a file descriptor via SCM rights and assign it a name",
775 .user_print = monitor_user_noop,
776 .mhandler.cmd_new = do_getfd,
779 SQMP
780 getfd
781 -----
783 Receive a file descriptor via SCM rights and assign it a name.
785 Arguments:
787 - "fdname": file descriptor name (json-string)
789 Example:
791 -> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
792 <- { "return": {} }
794 EQMP
797 .name = "closefd",
798 .args_type = "fdname:s",
799 .params = "closefd name",
800 .help = "close a file descriptor previously passed via SCM rights",
801 .user_print = monitor_user_noop,
802 .mhandler.cmd_new = do_closefd,
805 SQMP
806 closefd
807 -------
809 Close a file descriptor previously passed via SCM rights.
811 Arguments:
813 - "fdname": file descriptor name (json-string)
815 Example:
817 -> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
818 <- { "return": {} }
820 EQMP
823 .name = "block_passwd",
824 .args_type = "device:B,password:s",
825 .params = "block_passwd device password",
826 .help = "set the password of encrypted block devices",
827 .user_print = monitor_user_noop,
828 .mhandler.cmd_new = do_block_set_passwd,
831 SQMP
832 block_passwd
833 ------------
835 Set the password of encrypted block devices.
837 Arguments:
839 - "device": device name (json-string)
840 - "password": password (json-string)
842 Example:
844 -> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
845 "password": "12345" } }
846 <- { "return": {} }
848 EQMP
851 .name = "block_set_io_throttle",
852 .args_type = "device:B,bps:l,bps_rd:l,bps_wr:l,iops:l,iops_rd:l,iops_wr:l",
853 .params = "device bps bps_rd bps_wr iops iops_rd iops_wr",
854 .help = "change I/O throttle limits for a block drive",
855 .user_print = monitor_user_noop,
856 .mhandler.cmd_new = do_block_set_io_throttle,
859 SQMP
860 block_set_io_throttle
861 ------------
863 Change I/O throttle limits for a block drive.
865 Arguments:
867 - "device": device name (json-string)
868 - "bps": total throughput limit in bytes per second(json-int)
869 - "bps_rd": read throughput limit in bytes per second(json-int)
870 - "bps_wr": read throughput limit in bytes per second(json-int)
871 - "iops": total I/O operations per second(json-int)
872 - "iops_rd": read I/O operations per second(json-int)
873 - "iops_wr": write I/O operations per second(json-int)
875 Example:
877 -> { "execute": "block_set_io_throttle", "arguments": { "device": "virtio0",
878 "bps": "1000000",
879 "bps_rd": "0",
880 "bps_wr": "0",
881 "iops": "0",
882 "iops_rd": "0",
883 "iops_wr": "0" } }
884 <- { "return": {} }
886 EQMP
889 .name = "set_password",
890 .args_type = "protocol:s,password:s,connected:s?",
891 .params = "protocol password action-if-connected",
892 .help = "set spice/vnc password",
893 .user_print = monitor_user_noop,
894 .mhandler.cmd_new = set_password,
897 SQMP
898 set_password
899 ------------
901 Set the password for vnc/spice protocols.
903 Arguments:
905 - "protocol": protocol name (json-string)
906 - "password": password (json-string)
907 - "connected": [ keep | disconnect | fail ] (josn-string, optional)
909 Example:
911 -> { "execute": "set_password", "arguments": { "protocol": "vnc",
912 "password": "secret" } }
913 <- { "return": {} }
915 EQMP
918 .name = "expire_password",
919 .args_type = "protocol:s,time:s",
920 .params = "protocol time",
921 .help = "set spice/vnc password expire-time",
922 .user_print = monitor_user_noop,
923 .mhandler.cmd_new = expire_password,
926 SQMP
927 expire_password
928 ---------------
930 Set the password expire time for vnc/spice protocols.
932 Arguments:
934 - "protocol": protocol name (json-string)
935 - "time": [ now | never | +secs | secs ] (json-string)
937 Example:
939 -> { "execute": "expire_password", "arguments": { "protocol": "vnc",
940 "time": "+60" } }
941 <- { "return": {} }
943 EQMP
946 .name = "add_client",
947 .args_type = "protocol:s,fdname:s,skipauth:b?",
948 .params = "protocol fdname skipauth",
949 .help = "add a graphics client",
950 .user_print = monitor_user_noop,
951 .mhandler.cmd_new = add_graphics_client,
954 SQMP
955 add_client
956 ----------
958 Add a graphics client
960 Arguments:
962 - "protocol": protocol name (json-string)
963 - "fdname": file descriptor name (json-string)
965 Example:
967 -> { "execute": "add_client", "arguments": { "protocol": "vnc",
968 "fdname": "myclient" } }
969 <- { "return": {} }
971 EQMP
973 .name = "qmp_capabilities",
974 .args_type = "",
975 .params = "",
976 .help = "enable QMP capabilities",
977 .user_print = monitor_user_noop,
978 .mhandler.cmd_new = do_qmp_capabilities,
981 SQMP
982 qmp_capabilities
983 ----------------
985 Enable QMP capabilities.
987 Arguments: None.
989 Example:
991 -> { "execute": "qmp_capabilities" }
992 <- { "return": {} }
994 Note: This command must be issued before issuing any other command.
996 EQMP
999 .name = "human-monitor-command",
1000 .args_type = "command-line:s,cpu-index:i?",
1001 .params = "",
1002 .help = "",
1003 .user_print = monitor_user_noop,
1004 .mhandler.cmd_new = do_hmp_passthrough,
1007 SQMP
1008 human-monitor-command
1009 ---------------------
1011 Execute a Human Monitor command.
1013 Arguments:
1015 - command-line: the command name and its arguments, just like the
1016 Human Monitor's shell (json-string)
1017 - cpu-index: select the CPU number to be used by commands which access CPU
1018 data, like 'info registers'. The Monitor selects CPU 0 if this
1019 argument is not provided (json-int, optional)
1021 Example:
1023 -> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1024 <- { "return": "kvm support: enabled\r\n" }
1026 Notes:
1028 (1) The Human Monitor is NOT an stable interface, this means that command
1029 names, arguments and responses can change or be removed at ANY time.
1030 Applications that rely on long term stability guarantees should NOT
1031 use this command
1033 (2) Limitations:
1035 o This command is stateless, this means that commands that depend
1036 on state information (such as getfd) might not work
1038 o Commands that prompt the user for data (eg. 'cont' when the block
1039 device is encrypted) don't currently work
1041 3. Query Commands
1042 =================
1044 HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1045 HXCOMM this! We will possibly move query commands definitions inside those
1046 HXCOMM sections, just like regular commands.
1048 EQMP
1050 SQMP
1051 query-version
1052 -------------
1054 Show QEMU version.
1056 Return a json-object with the following information:
1058 - "qemu": A json-object containing three integer values:
1059 - "major": QEMU's major version (json-int)
1060 - "minor": QEMU's minor version (json-int)
1061 - "micro": QEMU's micro version (json-int)
1062 - "package": package's version (json-string)
1064 Example:
1066 -> { "execute": "query-version" }
1067 <- {
1068 "return":{
1069 "qemu":{
1070 "major":0,
1071 "minor":11,
1072 "micro":5
1074 "package":""
1078 EQMP
1081 .name = "query-version",
1082 .args_type = "",
1083 .mhandler.cmd_new = qmp_marshal_input_query_version,
1086 SQMP
1087 query-commands
1088 --------------
1090 List QMP available commands.
1092 Each command is represented by a json-object, the returned value is a json-array
1093 of all commands.
1095 Each json-object contain:
1097 - "name": command's name (json-string)
1099 Example:
1101 -> { "execute": "query-commands" }
1102 <- {
1103 "return":[
1105 "name":"query-balloon"
1108 "name":"system_powerdown"
1113 Note: This example has been shortened as the real response is too long.
1115 EQMP
1118 .name = "query-commands",
1119 .args_type = "",
1120 .mhandler.cmd_new = qmp_marshal_input_query_commands,
1123 SQMP
1124 query-chardev
1125 -------------
1127 Each device is represented by a json-object. The returned value is a json-array
1128 of all devices.
1130 Each json-object contain the following:
1132 - "label": device's label (json-string)
1133 - "filename": device's file (json-string)
1135 Example:
1137 -> { "execute": "query-chardev" }
1138 <- {
1139 "return":[
1141 "label":"monitor",
1142 "filename":"stdio"
1145 "label":"serial0",
1146 "filename":"vc"
1151 EQMP
1154 .name = "query-chardev",
1155 .args_type = "",
1156 .mhandler.cmd_new = qmp_marshal_input_query_chardev,
1159 SQMP
1160 query-block
1161 -----------
1163 Show the block devices.
1165 Each block device information is stored in a json-object and the returned value
1166 is a json-array of all devices.
1168 Each json-object contain the following:
1170 - "device": device name (json-string)
1171 - "type": device type (json-string)
1172 - deprecated, retained for backward compatibility
1173 - Possible values: "unknown"
1174 - "removable": true if the device is removable, false otherwise (json-bool)
1175 - "locked": true if the device is locked, false otherwise (json-bool)
1176 - "tray-open": only present if removable, true if the device has a tray,
1177 and it is open (json-bool)
1178 - "inserted": only present if the device is inserted, it is a json-object
1179 containing the following:
1180 - "file": device file name (json-string)
1181 - "ro": true if read-only, false otherwise (json-bool)
1182 - "drv": driver format name (json-string)
1183 - Possible values: "blkdebug", "bochs", "cloop", "cow", "dmg",
1184 "file", "file", "ftp", "ftps", "host_cdrom",
1185 "host_device", "host_floppy", "http", "https",
1186 "nbd", "parallels", "qcow", "qcow2", "raw",
1187 "tftp", "vdi", "vmdk", "vpc", "vvfat"
1188 - "backing_file": backing file name (json-string, optional)
1189 - "encrypted": true if encrypted, false otherwise (json-bool)
1190 - "bps": limit total bytes per second (json-int)
1191 - "bps_rd": limit read bytes per second (json-int)
1192 - "bps_wr": limit write bytes per second (json-int)
1193 - "iops": limit total I/O operations per second (json-int)
1194 - "iops_rd": limit read operations per second (json-int)
1195 - "iops_wr": limit write operations per second (json-int)
1197 - "io-status": I/O operation status, only present if the device supports it
1198 and the VM is configured to stop on errors. It's always reset
1199 to "ok" when the "cont" command is issued (json_string, optional)
1200 - Possible values: "ok", "failed", "nospace"
1202 Example:
1204 -> { "execute": "query-block" }
1205 <- {
1206 "return":[
1208 "io-status": "ok",
1209 "device":"ide0-hd0",
1210 "locked":false,
1211 "removable":false,
1212 "inserted":{
1213 "ro":false,
1214 "drv":"qcow2",
1215 "encrypted":false,
1216 "file":"disks/test.img",
1217 "bps":1000000,
1218 "bps_rd":0,
1219 "bps_wr":0,
1220 "iops":1000000,
1221 "iops_rd":0,
1222 "iops_wr":0,
1224 "type":"unknown"
1227 "io-status": "ok",
1228 "device":"ide1-cd0",
1229 "locked":false,
1230 "removable":true,
1231 "type":"unknown"
1234 "device":"floppy0",
1235 "locked":false,
1236 "removable":true,
1237 "type":"unknown"
1240 "device":"sd0",
1241 "locked":false,
1242 "removable":true,
1243 "type":"unknown"
1248 EQMP
1251 .name = "query-block",
1252 .args_type = "",
1253 .mhandler.cmd_new = qmp_marshal_input_query_block,
1256 SQMP
1257 query-blockstats
1258 ----------------
1260 Show block device statistics.
1262 Each device statistic information is stored in a json-object and the returned
1263 value is a json-array of all devices.
1265 Each json-object contain the following:
1267 - "device": device name (json-string)
1268 - "stats": A json-object with the statistics information, it contains:
1269 - "rd_bytes": bytes read (json-int)
1270 - "wr_bytes": bytes written (json-int)
1271 - "rd_operations": read operations (json-int)
1272 - "wr_operations": write operations (json-int)
1273 - "flush_operations": cache flush operations (json-int)
1274 - "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
1275 - "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
1276 - "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
1277 - "wr_highest_offset": Highest offset of a sector written since the
1278 BlockDriverState has been opened (json-int)
1279 - "parent": Contains recursively the statistics of the underlying
1280 protocol (e.g. the host file for a qcow2 image). If there is
1281 no underlying protocol, this field is omitted
1282 (json-object, optional)
1284 Example:
1286 -> { "execute": "query-blockstats" }
1287 <- {
1288 "return":[
1290 "device":"ide0-hd0",
1291 "parent":{
1292 "stats":{
1293 "wr_highest_offset":3686448128,
1294 "wr_bytes":9786368,
1295 "wr_operations":751,
1296 "rd_bytes":122567168,
1297 "rd_operations":36772
1298 "wr_total_times_ns":313253456
1299 "rd_total_times_ns":3465673657
1300 "flush_total_times_ns":49653
1301 "flush_operations":61,
1304 "stats":{
1305 "wr_highest_offset":2821110784,
1306 "wr_bytes":9786368,
1307 "wr_operations":692,
1308 "rd_bytes":122739200,
1309 "rd_operations":36604
1310 "flush_operations":51,
1311 "wr_total_times_ns":313253456
1312 "rd_total_times_ns":3465673657
1313 "flush_total_times_ns":49653
1317 "device":"ide1-cd0",
1318 "stats":{
1319 "wr_highest_offset":0,
1320 "wr_bytes":0,
1321 "wr_operations":0,
1322 "rd_bytes":0,
1323 "rd_operations":0
1324 "flush_operations":0,
1325 "wr_total_times_ns":0
1326 "rd_total_times_ns":0
1327 "flush_total_times_ns":0
1331 "device":"floppy0",
1332 "stats":{
1333 "wr_highest_offset":0,
1334 "wr_bytes":0,
1335 "wr_operations":0,
1336 "rd_bytes":0,
1337 "rd_operations":0
1338 "flush_operations":0,
1339 "wr_total_times_ns":0
1340 "rd_total_times_ns":0
1341 "flush_total_times_ns":0
1345 "device":"sd0",
1346 "stats":{
1347 "wr_highest_offset":0,
1348 "wr_bytes":0,
1349 "wr_operations":0,
1350 "rd_bytes":0,
1351 "rd_operations":0
1352 "flush_operations":0,
1353 "wr_total_times_ns":0
1354 "rd_total_times_ns":0
1355 "flush_total_times_ns":0
1361 EQMP
1364 .name = "query-blockstats",
1365 .args_type = "",
1366 .mhandler.cmd_new = qmp_marshal_input_query_blockstats,
1369 SQMP
1370 query-cpus
1371 ----------
1373 Show CPU information.
1375 Return a json-array. Each CPU is represented by a json-object, which contains:
1377 - "CPU": CPU index (json-int)
1378 - "current": true if this is the current CPU, false otherwise (json-bool)
1379 - "halted": true if the cpu is halted, false otherwise (json-bool)
1380 - Current program counter. The key's name depends on the architecture:
1381 "pc": i386/x86_64 (json-int)
1382 "nip": PPC (json-int)
1383 "pc" and "npc": sparc (json-int)
1384 "PC": mips (json-int)
1385 - "thread_id": ID of the underlying host thread (json-int)
1387 Example:
1389 -> { "execute": "query-cpus" }
1390 <- {
1391 "return":[
1393 "CPU":0,
1394 "current":true,
1395 "halted":false,
1396 "pc":3227107138
1397 "thread_id":3134
1400 "CPU":1,
1401 "current":false,
1402 "halted":true,
1403 "pc":7108165
1404 "thread_id":3135
1409 EQMP
1412 .name = "query-cpus",
1413 .args_type = "",
1414 .mhandler.cmd_new = qmp_marshal_input_query_cpus,
1417 SQMP
1418 query-pci
1419 ---------
1421 PCI buses and devices information.
1423 The returned value is a json-array of all buses. Each bus is represented by
1424 a json-object, which has a key with a json-array of all PCI devices attached
1425 to it. Each device is represented by a json-object.
1427 The bus json-object contains the following:
1429 - "bus": bus number (json-int)
1430 - "devices": a json-array of json-objects, each json-object represents a
1431 PCI device
1433 The PCI device json-object contains the following:
1435 - "bus": identical to the parent's bus number (json-int)
1436 - "slot": slot number (json-int)
1437 - "function": function number (json-int)
1438 - "class_info": a json-object containing:
1439 - "desc": device class description (json-string, optional)
1440 - "class": device class number (json-int)
1441 - "id": a json-object containing:
1442 - "device": device ID (json-int)
1443 - "vendor": vendor ID (json-int)
1444 - "irq": device's IRQ if assigned (json-int, optional)
1445 - "qdev_id": qdev id string (json-string)
1446 - "pci_bridge": It's a json-object, only present if this device is a
1447 PCI bridge, contains:
1448 - "bus": bus number (json-int)
1449 - "secondary": secondary bus number (json-int)
1450 - "subordinate": subordinate bus number (json-int)
1451 - "io_range": I/O memory range information, a json-object with the
1452 following members:
1453 - "base": base address, in bytes (json-int)
1454 - "limit": limit address, in bytes (json-int)
1455 - "memory_range": memory range information, a json-object with the
1456 following members:
1457 - "base": base address, in bytes (json-int)
1458 - "limit": limit address, in bytes (json-int)
1459 - "prefetchable_range": Prefetchable memory range information, a
1460 json-object with the following members:
1461 - "base": base address, in bytes (json-int)
1462 - "limit": limit address, in bytes (json-int)
1463 - "devices": a json-array of PCI devices if there's any attached, each
1464 each element is represented by a json-object, which contains
1465 the same members of the 'PCI device json-object' described
1466 above (optional)
1467 - "regions": a json-array of json-objects, each json-object represents a
1468 memory region of this device
1470 The memory range json-object contains the following:
1472 - "base": base memory address (json-int)
1473 - "limit": limit value (json-int)
1475 The region json-object can be an I/O region or a memory region, an I/O region
1476 json-object contains the following:
1478 - "type": "io" (json-string, fixed)
1479 - "bar": BAR number (json-int)
1480 - "address": memory address (json-int)
1481 - "size": memory size (json-int)
1483 A memory region json-object contains the following:
1485 - "type": "memory" (json-string, fixed)
1486 - "bar": BAR number (json-int)
1487 - "address": memory address (json-int)
1488 - "size": memory size (json-int)
1489 - "mem_type_64": true or false (json-bool)
1490 - "prefetch": true or false (json-bool)
1492 Example:
1494 -> { "execute": "query-pci" }
1495 <- {
1496 "return":[
1498 "bus":0,
1499 "devices":[
1501 "bus":0,
1502 "qdev_id":"",
1503 "slot":0,
1504 "class_info":{
1505 "class":1536,
1506 "desc":"Host bridge"
1508 "id":{
1509 "device":32902,
1510 "vendor":4663
1512 "function":0,
1513 "regions":[
1518 "bus":0,
1519 "qdev_id":"",
1520 "slot":1,
1521 "class_info":{
1522 "class":1537,
1523 "desc":"ISA bridge"
1525 "id":{
1526 "device":32902,
1527 "vendor":28672
1529 "function":0,
1530 "regions":[
1535 "bus":0,
1536 "qdev_id":"",
1537 "slot":1,
1538 "class_info":{
1539 "class":257,
1540 "desc":"IDE controller"
1542 "id":{
1543 "device":32902,
1544 "vendor":28688
1546 "function":1,
1547 "regions":[
1549 "bar":4,
1550 "size":16,
1551 "address":49152,
1552 "type":"io"
1557 "bus":0,
1558 "qdev_id":"",
1559 "slot":2,
1560 "class_info":{
1561 "class":768,
1562 "desc":"VGA controller"
1564 "id":{
1565 "device":4115,
1566 "vendor":184
1568 "function":0,
1569 "regions":[
1571 "prefetch":true,
1572 "mem_type_64":false,
1573 "bar":0,
1574 "size":33554432,
1575 "address":4026531840,
1576 "type":"memory"
1579 "prefetch":false,
1580 "mem_type_64":false,
1581 "bar":1,
1582 "size":4096,
1583 "address":4060086272,
1584 "type":"memory"
1587 "prefetch":false,
1588 "mem_type_64":false,
1589 "bar":6,
1590 "size":65536,
1591 "address":-1,
1592 "type":"memory"
1597 "bus":0,
1598 "qdev_id":"",
1599 "irq":11,
1600 "slot":4,
1601 "class_info":{
1602 "class":1280,
1603 "desc":"RAM controller"
1605 "id":{
1606 "device":6900,
1607 "vendor":4098
1609 "function":0,
1610 "regions":[
1612 "bar":0,
1613 "size":32,
1614 "address":49280,
1615 "type":"io"
1624 Note: This example has been shortened as the real response is too long.
1626 EQMP
1629 .name = "query-pci",
1630 .args_type = "",
1631 .mhandler.cmd_new = qmp_marshal_input_query_pci,
1634 SQMP
1635 query-kvm
1636 ---------
1638 Show KVM information.
1640 Return a json-object with the following information:
1642 - "enabled": true if KVM support is enabled, false otherwise (json-bool)
1643 - "present": true if QEMU has KVM support, false otherwise (json-bool)
1645 Example:
1647 -> { "execute": "query-kvm" }
1648 <- { "return": { "enabled": true, "present": true } }
1650 EQMP
1653 .name = "query-kvm",
1654 .args_type = "",
1655 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
1658 SQMP
1659 query-status
1660 ------------
1662 Return a json-object with the following information:
1664 - "running": true if the VM is running, or false if it is paused (json-bool)
1665 - "singlestep": true if the VM is in single step mode,
1666 false otherwise (json-bool)
1667 - "status": one of the following values (json-string)
1668 "debug" - QEMU is running on a debugger
1669 "inmigrate" - guest is paused waiting for an incoming migration
1670 "internal-error" - An internal error that prevents further guest
1671 execution has occurred
1672 "io-error" - the last IOP has failed and the device is configured
1673 to pause on I/O errors
1674 "paused" - guest has been paused via the 'stop' command
1675 "postmigrate" - guest is paused following a successful 'migrate'
1676 "prelaunch" - QEMU was started with -S and guest has not started
1677 "finish-migrate" - guest is paused to finish the migration process
1678 "restore-vm" - guest is paused to restore VM state
1679 "running" - guest is actively running
1680 "save-vm" - guest is paused to save the VM state
1681 "shutdown" - guest is shut down (and -no-shutdown is in use)
1682 "watchdog" - the watchdog action is configured to pause and
1683 has been triggered
1685 Example:
1687 -> { "execute": "query-status" }
1688 <- { "return": { "running": true, "singlestep": false, "status": "running" } }
1690 EQMP
1693 .name = "query-status",
1694 .args_type = "",
1695 .mhandler.cmd_new = qmp_marshal_input_query_status,
1698 SQMP
1699 query-mice
1700 ----------
1702 Show VM mice information.
1704 Each mouse is represented by a json-object, the returned value is a json-array
1705 of all mice.
1707 The mouse json-object contains the following:
1709 - "name": mouse's name (json-string)
1710 - "index": mouse's index (json-int)
1711 - "current": true if this mouse is receiving events, false otherwise (json-bool)
1712 - "absolute": true if the mouse generates absolute input events (json-bool)
1714 Example:
1716 -> { "execute": "query-mice" }
1717 <- {
1718 "return":[
1720 "name":"QEMU Microsoft Mouse",
1721 "index":0,
1722 "current":false,
1723 "absolute":false
1726 "name":"QEMU PS/2 Mouse",
1727 "index":1,
1728 "current":true,
1729 "absolute":true
1734 EQMP
1737 .name = "query-mice",
1738 .args_type = "",
1739 .mhandler.cmd_new = qmp_marshal_input_query_mice,
1742 SQMP
1743 query-vnc
1744 ---------
1746 Show VNC server information.
1748 Return a json-object with server information. Connected clients are returned
1749 as a json-array of json-objects.
1751 The main json-object contains the following:
1753 - "enabled": true or false (json-bool)
1754 - "host": server's IP address (json-string)
1755 - "family": address family (json-string)
1756 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1757 - "service": server's port number (json-string)
1758 - "auth": authentication method (json-string)
1759 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
1760 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
1761 "vencrypt+plain", "vencrypt+tls+none",
1762 "vencrypt+tls+plain", "vencrypt+tls+sasl",
1763 "vencrypt+tls+vnc", "vencrypt+x509+none",
1764 "vencrypt+x509+plain", "vencrypt+x509+sasl",
1765 "vencrypt+x509+vnc", "vnc"
1766 - "clients": a json-array of all connected clients
1768 Clients are described by a json-object, each one contain the following:
1770 - "host": client's IP address (json-string)
1771 - "family": address family (json-string)
1772 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1773 - "service": client's port number (json-string)
1774 - "x509_dname": TLS dname (json-string, optional)
1775 - "sasl_username": SASL username (json-string, optional)
1777 Example:
1779 -> { "execute": "query-vnc" }
1780 <- {
1781 "return":{
1782 "enabled":true,
1783 "host":"0.0.0.0",
1784 "service":"50402",
1785 "auth":"vnc",
1786 "family":"ipv4",
1787 "clients":[
1789 "host":"127.0.0.1",
1790 "service":"50401",
1791 "family":"ipv4"
1797 EQMP
1800 .name = "query-vnc",
1801 .args_type = "",
1802 .mhandler.cmd_new = qmp_marshal_input_query_vnc,
1805 SQMP
1806 query-spice
1807 -----------
1809 Show SPICE server information.
1811 Return a json-object with server information. Connected clients are returned
1812 as a json-array of json-objects.
1814 The main json-object contains the following:
1816 - "enabled": true or false (json-bool)
1817 - "host": server's IP address (json-string)
1818 - "port": server's port number (json-int, optional)
1819 - "tls-port": server's port number (json-int, optional)
1820 - "auth": authentication method (json-string)
1821 - Possible values: "none", "spice"
1822 - "channels": a json-array of all active channels clients
1824 Channels are described by a json-object, each one contain the following:
1826 - "host": client's IP address (json-string)
1827 - "family": address family (json-string)
1828 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1829 - "port": client's port number (json-string)
1830 - "connection-id": spice connection id. All channels with the same id
1831 belong to the same spice session (json-int)
1832 - "channel-type": channel type. "1" is the main control channel, filter for
1833 this one if you want track spice sessions only (json-int)
1834 - "channel-id": channel id. Usually "0", might be different needed when
1835 multiple channels of the same type exist, such as multiple
1836 display channels in a multihead setup (json-int)
1837 - "tls": whevener the channel is encrypted (json-bool)
1839 Example:
1841 -> { "execute": "query-spice" }
1842 <- {
1843 "return": {
1844 "enabled": true,
1845 "auth": "spice",
1846 "port": 5920,
1847 "tls-port": 5921,
1848 "host": "0.0.0.0",
1849 "channels": [
1851 "port": "54924",
1852 "family": "ipv4",
1853 "channel-type": 1,
1854 "connection-id": 1804289383,
1855 "host": "127.0.0.1",
1856 "channel-id": 0,
1857 "tls": true
1860 "port": "36710",
1861 "family": "ipv4",
1862 "channel-type": 4,
1863 "connection-id": 1804289383,
1864 "host": "127.0.0.1",
1865 "channel-id": 0,
1866 "tls": false
1868 [ ... more channels follow ... ]
1873 EQMP
1875 #if defined(CONFIG_SPICE)
1877 .name = "query-spice",
1878 .args_type = "",
1879 .mhandler.cmd_new = qmp_marshal_input_query_spice,
1881 #endif
1883 SQMP
1884 query-name
1885 ----------
1887 Show VM name.
1889 Return a json-object with the following information:
1891 - "name": VM's name (json-string, optional)
1893 Example:
1895 -> { "execute": "query-name" }
1896 <- { "return": { "name": "qemu-name" } }
1898 EQMP
1901 .name = "query-name",
1902 .args_type = "",
1903 .mhandler.cmd_new = qmp_marshal_input_query_name,
1906 SQMP
1907 query-uuid
1908 ----------
1910 Show VM UUID.
1912 Return a json-object with the following information:
1914 - "UUID": Universally Unique Identifier (json-string)
1916 Example:
1918 -> { "execute": "query-uuid" }
1919 <- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
1921 EQMP
1924 .name = "query-uuid",
1925 .args_type = "",
1926 .mhandler.cmd_new = qmp_marshal_input_query_uuid,
1929 SQMP
1930 query-migrate
1931 -------------
1933 Migration status.
1935 Return a json-object. If migration is active there will be another json-object
1936 with RAM migration status and if block migration is active another one with
1937 block migration status.
1939 The main json-object contains the following:
1941 - "status": migration status (json-string)
1942 - Possible values: "active", "completed", "failed", "cancelled"
1943 - "ram": only present if "status" is "active", it is a json-object with the
1944 following RAM information (in bytes):
1945 - "transferred": amount transferred (json-int)
1946 - "remaining": amount remaining (json-int)
1947 - "total": total (json-int)
1948 - "disk": only present if "status" is "active" and it is a block migration,
1949 it is a json-object with the following disk information (in bytes):
1950 - "transferred": amount transferred (json-int)
1951 - "remaining": amount remaining (json-int)
1952 - "total": total (json-int)
1954 Examples:
1956 1. Before the first migration
1958 -> { "execute": "query-migrate" }
1959 <- { "return": {} }
1961 2. Migration is done and has succeeded
1963 -> { "execute": "query-migrate" }
1964 <- { "return": { "status": "completed" } }
1966 3. Migration is done and has failed
1968 -> { "execute": "query-migrate" }
1969 <- { "return": { "status": "failed" } }
1971 4. Migration is being performed and is not a block migration:
1973 -> { "execute": "query-migrate" }
1974 <- {
1975 "return":{
1976 "status":"active",
1977 "ram":{
1978 "transferred":123,
1979 "remaining":123,
1980 "total":246
1985 5. Migration is being performed and is a block migration:
1987 -> { "execute": "query-migrate" }
1988 <- {
1989 "return":{
1990 "status":"active",
1991 "ram":{
1992 "total":1057024,
1993 "remaining":1053304,
1994 "transferred":3720
1996 "disk":{
1997 "total":20971520,
1998 "remaining":20880384,
1999 "transferred":91136
2004 EQMP
2007 .name = "query-migrate",
2008 .args_type = "",
2009 .mhandler.cmd_new = qmp_marshal_input_query_migrate,
2012 SQMP
2013 query-balloon
2014 -------------
2016 Show balloon information.
2018 Make an asynchronous request for balloon info. When the request completes a
2019 json-object will be returned containing the following data:
2021 - "actual": current balloon value in bytes (json-int)
2022 - "mem_swapped_in": Amount of memory swapped in bytes (json-int, optional)
2023 - "mem_swapped_out": Amount of memory swapped out in bytes (json-int, optional)
2024 - "major_page_faults": Number of major faults (json-int, optional)
2025 - "minor_page_faults": Number of minor faults (json-int, optional)
2026 - "free_mem": Total amount of free and unused memory in
2027 bytes (json-int, optional)
2028 - "total_mem": Total amount of available memory in bytes (json-int, optional)
2030 Example:
2032 -> { "execute": "query-balloon" }
2033 <- {
2034 "return":{
2035 "actual":1073741824,
2036 "mem_swapped_in":0,
2037 "mem_swapped_out":0,
2038 "major_page_faults":142,
2039 "minor_page_faults":239245,
2040 "free_mem":1014185984,
2041 "total_mem":1044668416
2045 EQMP
2048 .name = "query-balloon",
2049 .args_type = "",
2050 .mhandler.cmd_new = qmp_marshal_input_query_balloon,