]> git.proxmox.com Git - qemu.git/blame - qmp-commands.hx
qapi: Convert query-status
[qemu.git] / qmp-commands.hx
CommitLineData
82a56f0d
LC
1HXCOMM QMP dispatch table and documentation
2HXCOMM Text between SQMP and EQMP is copied to the QMP documention file and
3HXCOMM does not show up in the other formats.
4
5SQMP
6 QMP Supported Commands
7 ----------------------
8
9This document describes all commands currently supported by QMP.
10
11Most of the time their usage is exactly the same as in the user Monitor, this
12means that any other document which also describe commands (the manpage,
13QEMU's manual, etc) can and should be consulted.
14
15QMP has two types of commands: regular and query commands. Regular commands
16usually change the Virtual Machine's state someway, while query commands just
17return information. The sections below are divided accordingly.
18
19It's important to observe that all communication examples are formatted in
20a reader-friendly way, so that they're easier to understand. However, in real
21protocol usage, they're emitted as a single line.
22
23Also, the following notation is used to denote data flow:
24
25-> data issued by the Client
26<- Server data response
27
28Please, refer to the QMP specification (QMP/qmp-spec.txt) for detailed
29information on the Server command and response formats.
30
31NOTE: This document is temporary and will be replaced soon.
32
331. Stability Considerations
34===========================
35
36The current QMP command set (described in this file) may be useful for a
37number of use cases, however it's limited and several commands have bad
38defined semantics, specially with regard to command completion.
39
40These problems are going to be solved incrementally in the next QEMU releases
41and we're going to establish a deprecation policy for badly defined commands.
42
43If you're planning to adopt QMP, please observe the following:
44
c20cdf8b 45 1. The deprecation policy will take effect and be documented soon, please
82a56f0d
LC
46 check the documentation of each used command as soon as a new release of
47 QEMU is available
48
49 2. DO NOT rely on anything which is not explicit documented
50
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)
54
552. Regular Commands
56===================
57
58Server's responses in the examples below are always a success response, please
59refer to the QMP specification for more details on error responses.
60
61EQMP
62
63 {
64 .name = "quit",
65 .args_type = "",
66 .params = "",
67 .help = "quit the emulator",
68 .user_print = monitor_user_noop,
69 .mhandler.cmd_new = do_quit,
70 },
71
72SQMP
73quit
74----
75
76Quit the emulator.
77
78Arguments: None.
79
80Example:
81
82-> { "execute": "quit" }
83<- { "return": {} }
84
85EQMP
86
87 {
88 .name = "eject",
89 .args_type = "force:-f,device:B",
90 .params = "[-f] device",
91 .help = "eject a removable medium (use -f to force it)",
92 .user_print = monitor_user_noop,
93 .mhandler.cmd_new = do_eject,
94 },
95
96SQMP
97eject
98-----
99
100Eject a removable medium.
101
102Arguments:
103
104- force: force ejection (json-bool, optional)
105- device: device name (json-string)
106
107Example:
108
109-> { "execute": "eject", "arguments": { "device": "ide1-cd0" } }
110<- { "return": {} }
111
112Note: The "force" argument defaults to false.
113
114EQMP
115
116 {
117 .name = "change",
118 .args_type = "device:B,target:F,arg:s?",
119 .params = "device filename [format]",
120 .help = "change a removable medium, optional format",
121 .user_print = monitor_user_noop,
122 .mhandler.cmd_new = do_change,
123 },
124
125SQMP
126change
127------
128
129Change a removable medium or VNC configuration.
130
131Arguments:
132
133- "device": device name (json-string)
134- "target": filename or item (json-string)
135- "arg": additional argument (json-string, optional)
136
137Examples:
138
1391. Change a removable medium
140
141-> { "execute": "change",
142 "arguments": { "device": "ide1-cd0",
143 "target": "/srv/images/Fedora-12-x86_64-DVD.iso" } }
144<- { "return": {} }
145
1462. Change VNC password
147
148-> { "execute": "change",
149 "arguments": { "device": "vnc", "target": "password",
150 "arg": "foobar1" } }
151<- { "return": {} }
152
153EQMP
154
155 {
156 .name = "screendump",
157 .args_type = "filename:F",
158 .params = "filename",
159 .help = "save screen into PPM image 'filename'",
160 .user_print = monitor_user_noop,
161 .mhandler.cmd_new = do_screen_dump,
162 },
163
164SQMP
165screendump
166----------
167
168Save screen into PPM image.
169
170Arguments:
171
172- "filename": file path (json-string)
173
174Example:
175
176-> { "execute": "screendump", "arguments": { "filename": "/tmp/image" } }
177<- { "return": {} }
178
179EQMP
180
181 {
182 .name = "stop",
183 .args_type = "",
184 .params = "",
185 .help = "stop emulation",
186 .user_print = monitor_user_noop,
187 .mhandler.cmd_new = do_stop,
188 },
189
190SQMP
191stop
192----
193
194Stop the emulator.
195
196Arguments: None.
197
198Example:
199
200-> { "execute": "stop" }
201<- { "return": {} }
202
203EQMP
204
205 {
206 .name = "cont",
207 .args_type = "",
208 .params = "",
209 .help = "resume emulation",
210 .user_print = monitor_user_noop,
211 .mhandler.cmd_new = do_cont,
212 },
213
214SQMP
215cont
216----
217
218Resume emulation.
219
220Arguments: None.
221
222Example:
223
224-> { "execute": "cont" }
225<- { "return": {} }
226
227EQMP
228
229 {
230 .name = "system_reset",
231 .args_type = "",
232 .params = "",
233 .help = "reset the system",
234 .user_print = monitor_user_noop,
235 .mhandler.cmd_new = do_system_reset,
236 },
237
238SQMP
239system_reset
240------------
241
242Reset the system.
243
244Arguments: None.
245
246Example:
247
248-> { "execute": "system_reset" }
249<- { "return": {} }
250
251EQMP
252
253 {
254 .name = "system_powerdown",
255 .args_type = "",
256 .params = "",
257 .help = "send system power down event",
258 .user_print = monitor_user_noop,
259 .mhandler.cmd_new = do_system_powerdown,
260 },
261
262SQMP
263system_powerdown
264----------------
265
266Send system power down event.
267
268Arguments: None.
269
270Example:
271
272-> { "execute": "system_powerdown" }
273<- { "return": {} }
274
275EQMP
276
277 {
278 .name = "device_add",
279 .args_type = "device:O",
280 .params = "driver[,prop=value][,...]",
281 .help = "add device, like -device on the command line",
282 .user_print = monitor_user_noop,
283 .mhandler.cmd_new = do_device_add,
284 },
285
286SQMP
287device_add
288----------
289
290Add a device.
291
292Arguments:
293
294- "driver": the name of the new device's driver (json-string)
295- "bus": the device's parent bus (device tree path, json-string, optional)
296- "id": the device's ID, must be unique (json-string)
297- device properties
298
299Example:
300
301-> { "execute": "device_add", "arguments": { "driver": "e1000", "id": "net1" } }
302<- { "return": {} }
303
304Notes:
305
306(1) For detailed information about this command, please refer to the
307 'docs/qdev-device-use.txt' file.
308
309(2) It's possible to list device properties by running QEMU with the
310 "-device DEVICE,\?" command-line argument, where DEVICE is the device's name
311
312EQMP
313
314 {
315 .name = "device_del",
316 .args_type = "id:s",
317 .params = "device",
318 .help = "remove device",
319 .user_print = monitor_user_noop,
320 .mhandler.cmd_new = do_device_del,
321 },
322
323SQMP
324device_del
325----------
326
327Remove a device.
328
329Arguments:
330
331- "id": the device's ID (json-string)
332
333Example:
334
335-> { "execute": "device_del", "arguments": { "id": "net1" } }
336<- { "return": {} }
337
338EQMP
339
340 {
341 .name = "cpu",
342 .args_type = "index:i",
343 .params = "index",
344 .help = "set the default CPU",
345 .user_print = monitor_user_noop,
346 .mhandler.cmd_new = do_cpu_set,
347 },
348
349SQMP
350cpu
351---
352
353Set the default CPU.
354
355Arguments:
356
357- "index": the CPU's index (json-int)
358
359Example:
360
361-> { "execute": "cpu", "arguments": { "index": 0 } }
362<- { "return": {} }
363
364Note: CPUs' indexes are obtained with the 'query-cpus' command.
365
366EQMP
367
368 {
369 .name = "memsave",
370 .args_type = "val:l,size:i,filename:s",
371 .params = "addr size file",
372 .help = "save to disk virtual memory dump starting at 'addr' of size 'size'",
373 .user_print = monitor_user_noop,
374 .mhandler.cmd_new = do_memory_save,
375 },
376
377SQMP
378memsave
379-------
380
381Save to disk virtual memory dump starting at 'val' of size 'size'.
382
383Arguments:
384
385- "val": the starting address (json-int)
386- "size": the memory size, in bytes (json-int)
387- "filename": file path (json-string)
388
389Example:
390
391-> { "execute": "memsave",
392 "arguments": { "val": 10,
393 "size": 100,
394 "filename": "/tmp/virtual-mem-dump" } }
395<- { "return": {} }
396
397Note: Depends on the current CPU.
398
399EQMP
400
401 {
402 .name = "pmemsave",
403 .args_type = "val:l,size:i,filename:s",
404 .params = "addr size file",
405 .help = "save to disk physical memory dump starting at 'addr' of size 'size'",
406 .user_print = monitor_user_noop,
407 .mhandler.cmd_new = do_physical_memory_save,
408 },
409
410SQMP
411pmemsave
412--------
413
414Save to disk physical memory dump starting at 'val' of size 'size'.
415
416Arguments:
417
418- "val": the starting address (json-int)
419- "size": the memory size, in bytes (json-int)
420- "filename": file path (json-string)
421
422Example:
423
424-> { "execute": "pmemsave",
425 "arguments": { "val": 10,
426 "size": 100,
427 "filename": "/tmp/physical-mem-dump" } }
428<- { "return": {} }
429
a4046664
LJ
430EQMP
431
432 {
433 .name = "inject-nmi",
434 .args_type = "",
435 .params = "",
436 .help = "",
437 .user_print = monitor_user_noop,
e9b4b432 438 .mhandler.cmd_new = do_inject_nmi,
a4046664
LJ
439 },
440
441SQMP
442inject-nmi
443----------
444
445Inject an NMI on guest's CPUs.
446
447Arguments: None.
448
449Example:
450
451-> { "execute": "inject-nmi" }
452<- { "return": {} }
453
454Note: inject-nmi is only supported for x86 guest currently, it will
455 returns "Unsupported" error for non-x86 guest.
456
82a56f0d
LC
457EQMP
458
459 {
460 .name = "migrate",
461 .args_type = "detach:-d,blk:-b,inc:-i,uri:s",
462 .params = "[-d] [-b] [-i] uri",
463 .help = "migrate to URI (using -d to not wait for completion)"
464 "\n\t\t\t -b for migration without shared storage with"
465 " full copy of disk\n\t\t\t -i for migration without "
466 "shared storage with incremental copy of disk "
467 "(base image shared between src and destination)",
468 .user_print = monitor_user_noop,
469 .mhandler.cmd_new = do_migrate,
470 },
471
472SQMP
473migrate
474-------
475
476Migrate to URI.
477
478Arguments:
479
480- "blk": block migration, full disk copy (json-bool, optional)
481- "inc": incremental disk copy (json-bool, optional)
482- "uri": Destination URI (json-string)
483
484Example:
485
486-> { "execute": "migrate", "arguments": { "uri": "tcp:0:4446" } }
487<- { "return": {} }
488
489Notes:
490
491(1) The 'query-migrate' command should be used to check migration's progress
492 and final result (this information is provided by the 'status' member)
493(2) All boolean arguments default to false
494(3) The user Monitor's "detach" argument is invalid in QMP and should not
495 be used
496
497EQMP
498
499 {
500 .name = "migrate_cancel",
501 .args_type = "",
502 .params = "",
503 .help = "cancel the current VM migration",
504 .user_print = monitor_user_noop,
505 .mhandler.cmd_new = do_migrate_cancel,
506 },
507
508SQMP
509migrate_cancel
510--------------
511
512Cancel the current migration.
513
514Arguments: None.
515
516Example:
517
518-> { "execute": "migrate_cancel" }
519<- { "return": {} }
520
521EQMP
522
523 {
524 .name = "migrate_set_speed",
3a019b6e 525 .args_type = "value:o",
82a56f0d
LC
526 .params = "value",
527 .help = "set maximum speed (in bytes) for migrations",
528 .user_print = monitor_user_noop,
529 .mhandler.cmd_new = do_migrate_set_speed,
530 },
531
e866e239 532SQMP
ff73edf5
JS
533migrate_set_speed
534-----------------
e866e239 535
ff73edf5 536Set maximum speed for migrations.
e866e239
GH
537
538Arguments:
539
ff73edf5 540- "value": maximum speed, in bytes per second (json-int)
e866e239
GH
541
542Example:
543
ff73edf5 544-> { "execute": "migrate_set_speed", "arguments": { "value": 1024 } }
e866e239
GH
545<- { "return": {} }
546
547EQMP
548
549 {
ff73edf5
JS
550 .name = "migrate_set_downtime",
551 .args_type = "value:T",
552 .params = "value",
553 .help = "set maximum tolerated downtime (in seconds) for migrations",
e866e239 554 .user_print = monitor_user_noop,
ff73edf5 555 .mhandler.cmd_new = do_migrate_set_downtime,
e866e239
GH
556 },
557
82a56f0d 558SQMP
ff73edf5
JS
559migrate_set_downtime
560--------------------
82a56f0d 561
ff73edf5 562Set maximum tolerated downtime (in seconds) for migrations.
82a56f0d
LC
563
564Arguments:
565
ff73edf5 566- "value": maximum downtime (json-number)
82a56f0d
LC
567
568Example:
569
ff73edf5 570-> { "execute": "migrate_set_downtime", "arguments": { "value": 0.1 } }
82a56f0d
LC
571<- { "return": {} }
572
573EQMP
574
575 {
ff73edf5
JS
576 .name = "client_migrate_info",
577 .args_type = "protocol:s,hostname:s,port:i?,tls-port:i?,cert-subject:s?",
578 .params = "protocol hostname port tls-port cert-subject",
579 .help = "send migration info to spice/vnc client",
82a56f0d 580 .user_print = monitor_user_noop,
ff73edf5 581 .mhandler.cmd_new = client_migrate_info,
82a56f0d
LC
582 },
583
584SQMP
ff73edf5
JS
585client_migrate_info
586------------------
82a56f0d 587
ff73edf5
JS
588Set the spice/vnc connection info for the migration target. The spice/vnc
589server will ask the spice/vnc client to automatically reconnect using the
590new parameters (if specified) once the vm migration finished successfully.
82a56f0d
LC
591
592Arguments:
593
ff73edf5
JS
594- "protocol": protocol: "spice" or "vnc" (json-string)
595- "hostname": migration target hostname (json-string)
596- "port": spice/vnc tcp port for plaintext channels (json-int, optional)
597- "tls-port": spice tcp port for tls-secured channels (json-int, optional)
598- "cert-subject": server certificate subject (json-string, optional)
82a56f0d
LC
599
600Example:
601
ff73edf5
JS
602-> { "execute": "client_migrate_info",
603 "arguments": { "protocol": "spice",
604 "hostname": "virt42.lab.kraxel.org",
605 "port": 1234 } }
82a56f0d
LC
606<- { "return": {} }
607
608EQMP
609
610 {
611 .name = "netdev_add",
612 .args_type = "netdev:O",
613 .params = "[user|tap|socket],id=str[,prop=value][,...]",
614 .help = "add host network device",
615 .user_print = monitor_user_noop,
616 .mhandler.cmd_new = do_netdev_add,
617 },
618
619SQMP
620netdev_add
621----------
622
623Add host network device.
624
625Arguments:
626
627- "type": the device type, "tap", "user", ... (json-string)
628- "id": the device's ID, must be unique (json-string)
629- device options
630
631Example:
632
633-> { "execute": "netdev_add", "arguments": { "type": "user", "id": "netdev1" } }
634<- { "return": {} }
635
636Note: The supported device options are the same ones supported by the '-net'
637 command-line argument, which are listed in the '-help' output or QEMU's
638 manual
639
640EQMP
641
642 {
643 .name = "netdev_del",
644 .args_type = "id:s",
645 .params = "id",
646 .help = "remove host network device",
647 .user_print = monitor_user_noop,
648 .mhandler.cmd_new = do_netdev_del,
649 },
650
651SQMP
652netdev_del
653----------
654
655Remove host network device.
656
657Arguments:
658
659- "id": the device's ID, must be unique (json-string)
660
661Example:
662
663-> { "execute": "netdev_del", "arguments": { "id": "netdev1" } }
664<- { "return": {} }
665
6d4a2b3a
CH
666
667EQMP
668
669 {
670 .name = "block_resize",
671 .args_type = "device:B,size:o",
672 .params = "device size",
673 .help = "resize a block image",
674 .user_print = monitor_user_noop,
675 .mhandler.cmd_new = do_block_resize,
676 },
677
678SQMP
679block_resize
680------------
681
682Resize a block image while a guest is running.
683
684Arguments:
685
686- "device": the device's ID, must be unique (json-string)
687- "size": new size
688
689Example:
690
691-> { "execute": "block_resize", "arguments": { "device": "scratch", "size": 1073741824 } }
692<- { "return": {} }
693
d967b2f1
JS
694EQMP
695
696 {
697 .name = "blockdev-snapshot-sync",
698 .args_type = "device:B,snapshot-file:s?,format:s?",
699 .params = "device [new-image-file] [format]",
700 .user_print = monitor_user_noop,
701 .mhandler.cmd_new = do_snapshot_blkdev,
702 },
703
704SQMP
705blockdev-snapshot-sync
706----------------------
707
708Synchronous snapshot of a block device. snapshot-file specifies the
709target of the new image. If the file exists, or if it is a device, the
710snapshot will be created in the existing file/device. If does not
711exist, a new file will be created. format specifies the format of the
712snapshot image, default is qcow2.
713
714Arguments:
715
716- "device": device name to snapshot (json-string)
717- "snapshot-file": name of new image file (json-string)
718- "format": format of new image (json-string, optional)
719
720Example:
721
722-> { "execute": "blockdev-snapshot", "arguments": { "device": "ide-hd0",
723 "snapshot-file":
724 "/some/place/my-image",
725 "format": "qcow2" } }
726<- { "return": {} }
727
82a56f0d
LC
728EQMP
729
730 {
731 .name = "balloon",
732 .args_type = "value:M",
733 .params = "target",
734 .help = "request VM to change its memory allocation (in MB)",
735 .user_print = monitor_user_noop,
736 .mhandler.cmd_async = do_balloon,
737 .flags = MONITOR_CMD_ASYNC,
738 },
739
740SQMP
741balloon
742-------
743
744Request VM to change its memory allocation (in bytes).
745
746Arguments:
747
748- "value": New memory allocation (json-int)
749
750Example:
751
752-> { "execute": "balloon", "arguments": { "value": 536870912 } }
753<- { "return": {} }
754
755EQMP
756
757 {
758 .name = "set_link",
759 .args_type = "name:s,up:b",
760 .params = "name on|off",
761 .help = "change the link status of a network adapter",
762 .user_print = monitor_user_noop,
763 .mhandler.cmd_new = do_set_link,
764 },
765
766SQMP
767set_link
768--------
769
770Change the link status of a network adapter.
771
772Arguments:
773
774- "name": network device name (json-string)
775- "up": status is up (json-bool)
776
777Example:
778
779-> { "execute": "set_link", "arguments": { "name": "e1000.0", "up": false } }
780<- { "return": {} }
781
782EQMP
783
784 {
785 .name = "getfd",
786 .args_type = "fdname:s",
787 .params = "getfd name",
788 .help = "receive a file descriptor via SCM rights and assign it a name",
789 .user_print = monitor_user_noop,
790 .mhandler.cmd_new = do_getfd,
791 },
792
793SQMP
794getfd
795-----
796
797Receive a file descriptor via SCM rights and assign it a name.
798
799Arguments:
800
801- "fdname": file descriptor name (json-string)
802
803Example:
804
805-> { "execute": "getfd", "arguments": { "fdname": "fd1" } }
806<- { "return": {} }
807
808EQMP
809
810 {
811 .name = "closefd",
812 .args_type = "fdname:s",
813 .params = "closefd name",
814 .help = "close a file descriptor previously passed via SCM rights",
815 .user_print = monitor_user_noop,
816 .mhandler.cmd_new = do_closefd,
817 },
818
819SQMP
820closefd
821-------
822
823Close a file descriptor previously passed via SCM rights.
824
825Arguments:
826
827- "fdname": file descriptor name (json-string)
828
829Example:
830
831-> { "execute": "closefd", "arguments": { "fdname": "fd1" } }
832<- { "return": {} }
833
834EQMP
835
836 {
837 .name = "block_passwd",
838 .args_type = "device:B,password:s",
839 .params = "block_passwd device password",
840 .help = "set the password of encrypted block devices",
841 .user_print = monitor_user_noop,
842 .mhandler.cmd_new = do_block_set_passwd,
843 },
844
845SQMP
846block_passwd
847------------
848
849Set the password of encrypted block devices.
850
851Arguments:
852
853- "device": device name (json-string)
854- "password": password (json-string)
855
856Example:
857
858-> { "execute": "block_passwd", "arguments": { "device": "ide0-hd0",
859 "password": "12345" } }
860<- { "return": {} }
861
7572150c
GH
862EQMP
863
864 {
865 .name = "set_password",
866 .args_type = "protocol:s,password:s,connected:s?",
867 .params = "protocol password action-if-connected",
868 .help = "set spice/vnc password",
869 .user_print = monitor_user_noop,
870 .mhandler.cmd_new = set_password,
871 },
872
873SQMP
874set_password
875------------
876
877Set the password for vnc/spice protocols.
878
879Arguments:
880
881- "protocol": protocol name (json-string)
882- "password": password (json-string)
883- "connected": [ keep | disconnect | fail ] (josn-string, optional)
884
885Example:
886
887-> { "execute": "set_password", "arguments": { "protocol": "vnc",
888 "password": "secret" } }
889<- { "return": {} }
890
891EQMP
892
893 {
894 .name = "expire_password",
895 .args_type = "protocol:s,time:s",
896 .params = "protocol time",
897 .help = "set spice/vnc password expire-time",
898 .user_print = monitor_user_noop,
899 .mhandler.cmd_new = expire_password,
900 },
901
902SQMP
903expire_password
904---------------
905
906Set the password expire time for vnc/spice protocols.
907
908Arguments:
909
910- "protocol": protocol name (json-string)
911- "time": [ now | never | +secs | secs ] (json-string)
912
913Example:
914
915-> { "execute": "expire_password", "arguments": { "protocol": "vnc",
916 "time": "+60" } }
917<- { "return": {} }
918
82a56f0d
LC
919EQMP
920
13661089
DB
921 {
922 .name = "add_client",
923 .args_type = "protocol:s,fdname:s,skipauth:b?",
924 .params = "protocol fdname skipauth",
925 .help = "add a graphics client",
926 .user_print = monitor_user_noop,
927 .mhandler.cmd_new = add_graphics_client,
928 },
929
930SQMP
931add_client
932----------
933
934Add a graphics client
935
936Arguments:
937
938- "protocol": protocol name (json-string)
939- "fdname": file descriptor name (json-string)
940
941Example:
942
943-> { "execute": "add_client", "arguments": { "protocol": "vnc",
944 "fdname": "myclient" } }
945<- { "return": {} }
946
947EQMP
82a56f0d
LC
948 {
949 .name = "qmp_capabilities",
950 .args_type = "",
951 .params = "",
952 .help = "enable QMP capabilities",
953 .user_print = monitor_user_noop,
954 .mhandler.cmd_new = do_qmp_capabilities,
955 },
956
957SQMP
958qmp_capabilities
959----------------
960
961Enable QMP capabilities.
962
963Arguments: None.
964
965Example:
966
967-> { "execute": "qmp_capabilities" }
968<- { "return": {} }
969
970Note: This command must be issued before issuing any other command.
971
0268d97c
LC
972EQMP
973
974 {
975 .name = "human-monitor-command",
976 .args_type = "command-line:s,cpu-index:i?",
977 .params = "",
978 .help = "",
979 .user_print = monitor_user_noop,
980 .mhandler.cmd_new = do_hmp_passthrough,
981 },
982
983SQMP
984human-monitor-command
985---------------------
986
987Execute a Human Monitor command.
988
989Arguments:
990
991- command-line: the command name and its arguments, just like the
992 Human Monitor's shell (json-string)
993- cpu-index: select the CPU number to be used by commands which access CPU
994 data, like 'info registers'. The Monitor selects CPU 0 if this
995 argument is not provided (json-int, optional)
996
997Example:
998
999-> { "execute": "human-monitor-command", "arguments": { "command-line": "info kvm" } }
1000<- { "return": "kvm support: enabled\r\n" }
1001
1002Notes:
1003
1004(1) The Human Monitor is NOT an stable interface, this means that command
1005 names, arguments and responses can change or be removed at ANY time.
1006 Applications that rely on long term stability guarantees should NOT
1007 use this command
1008
1009(2) Limitations:
1010
1011 o This command is stateless, this means that commands that depend
1012 on state information (such as getfd) might not work
1013
1014 o Commands that prompt the user for data (eg. 'cont' when the block
1015 device is encrypted) don't currently work
1016
82a56f0d
LC
10173. Query Commands
1018=================
1019
1020HXCOMM Each query command below is inside a SQMP/EQMP section, do NOT change
1021HXCOMM this! We will possibly move query commands definitions inside those
1022HXCOMM sections, just like regular commands.
1023
1024EQMP
1025
1026SQMP
1027query-version
1028-------------
1029
1030Show QEMU version.
1031
1032Return a json-object with the following information:
1033
1034- "qemu": A json-object containing three integer values:
1035 - "major": QEMU's major version (json-int)
1036 - "minor": QEMU's minor version (json-int)
1037 - "micro": QEMU's micro version (json-int)
1038- "package": package's version (json-string)
1039
1040Example:
1041
1042-> { "execute": "query-version" }
1043<- {
1044 "return":{
1045 "qemu":{
1046 "major":0,
1047 "minor":11,
1048 "micro":5
1049 },
1050 "package":""
1051 }
1052 }
1053
1054EQMP
1055
b9c15f16
LC
1056 {
1057 .name = "query-version",
1058 .args_type = "",
1059 .mhandler.cmd_new = qmp_marshal_input_query_version,
1060 },
1061
82a56f0d
LC
1062SQMP
1063query-commands
1064--------------
1065
1066List QMP available commands.
1067
1068Each command is represented by a json-object, the returned value is a json-array
1069of all commands.
1070
1071Each json-object contain:
1072
1073- "name": command's name (json-string)
1074
1075Example:
1076
1077-> { "execute": "query-commands" }
1078<- {
1079 "return":[
1080 {
1081 "name":"query-balloon"
1082 },
1083 {
1084 "name":"system_powerdown"
1085 }
1086 ]
1087 }
1088
1089Note: This example has been shortened as the real response is too long.
1090
1091EQMP
1092
1093SQMP
1094query-chardev
1095-------------
1096
1097Each device is represented by a json-object. The returned value is a json-array
1098of all devices.
1099
1100Each json-object contain the following:
1101
1102- "label": device's label (json-string)
1103- "filename": device's file (json-string)
1104
1105Example:
1106
1107-> { "execute": "query-chardev" }
1108<- {
1109 "return":[
1110 {
1111 "label":"monitor",
1112 "filename":"stdio"
1113 },
1114 {
1115 "label":"serial0",
1116 "filename":"vc"
1117 }
1118 ]
1119 }
1120
1121EQMP
1122
1123SQMP
1124query-block
1125-----------
1126
1127Show the block devices.
1128
1129Each block device information is stored in a json-object and the returned value
1130is a json-array of all devices.
1131
1132Each json-object contain the following:
1133
1134- "device": device name (json-string)
1135- "type": device type (json-string)
d8aeeb31
MA
1136 - deprecated, retained for backward compatibility
1137 - Possible values: "unknown"
82a56f0d
LC
1138- "removable": true if the device is removable, false otherwise (json-bool)
1139- "locked": true if the device is locked, false otherwise (json-bool)
e4def80b
MA
1140- "tray-open": only present if removable, true if the device has a tray,
1141 and it is open (json-bool)
82a56f0d
LC
1142- "inserted": only present if the device is inserted, it is a json-object
1143 containing the following:
1144 - "file": device file name (json-string)
1145 - "ro": true if read-only, false otherwise (json-bool)
1146 - "drv": driver format name (json-string)
1147 - Possible values: "blkdebug", "bochs", "cloop", "cow", "dmg",
1148 "file", "file", "ftp", "ftps", "host_cdrom",
1149 "host_device", "host_floppy", "http", "https",
1150 "nbd", "parallels", "qcow", "qcow2", "raw",
1151 "tftp", "vdi", "vmdk", "vpc", "vvfat"
1152 - "backing_file": backing file name (json-string, optional)
1153 - "encrypted": true if encrypted, false otherwise (json-bool)
1154
1155Example:
1156
1157-> { "execute": "query-block" }
1158<- {
1159 "return":[
1160 {
1161 "device":"ide0-hd0",
1162 "locked":false,
1163 "removable":false,
1164 "inserted":{
1165 "ro":false,
1166 "drv":"qcow2",
1167 "encrypted":false,
1168 "file":"disks/test.img"
1169 },
d8aeeb31 1170 "type":"unknown"
82a56f0d
LC
1171 },
1172 {
1173 "device":"ide1-cd0",
1174 "locked":false,
1175 "removable":true,
d8aeeb31 1176 "type":"unknown"
82a56f0d
LC
1177 },
1178 {
1179 "device":"floppy0",
1180 "locked":false,
1181 "removable":true,
d8aeeb31 1182 "type":"unknown"
82a56f0d
LC
1183 },
1184 {
1185 "device":"sd0",
1186 "locked":false,
1187 "removable":true,
d8aeeb31 1188 "type":"unknown"
82a56f0d
LC
1189 }
1190 ]
1191 }
1192
1193EQMP
1194
1195SQMP
1196query-blockstats
1197----------------
1198
1199Show block device statistics.
1200
1201Each device statistic information is stored in a json-object and the returned
1202value is a json-array of all devices.
1203
1204Each json-object contain the following:
1205
1206- "device": device name (json-string)
1207- "stats": A json-object with the statistics information, it contains:
1208 - "rd_bytes": bytes read (json-int)
1209 - "wr_bytes": bytes written (json-int)
1210 - "rd_operations": read operations (json-int)
1211 - "wr_operations": write operations (json-int)
e8045d67 1212 - "flush_operations": cache flush operations (json-int)
c488c7f6
CH
1213 - "wr_total_time_ns": total time spend on writes in nano-seconds (json-int)
1214 - "rd_total_time_ns": total time spend on reads in nano-seconds (json-int)
1215 - "flush_total_time_ns": total time spend on cache flushes in nano-seconds (json-int)
82a56f0d
LC
1216 - "wr_highest_offset": Highest offset of a sector written since the
1217 BlockDriverState has been opened (json-int)
1218- "parent": Contains recursively the statistics of the underlying
1219 protocol (e.g. the host file for a qcow2 image). If there is
1220 no underlying protocol, this field is omitted
1221 (json-object, optional)
1222
1223Example:
1224
1225-> { "execute": "query-blockstats" }
1226<- {
1227 "return":[
1228 {
1229 "device":"ide0-hd0",
1230 "parent":{
1231 "stats":{
1232 "wr_highest_offset":3686448128,
1233 "wr_bytes":9786368,
1234 "wr_operations":751,
1235 "rd_bytes":122567168,
1236 "rd_operations":36772
c488c7f6
CH
1237 "wr_total_times_ns":313253456
1238 "rd_total_times_ns":3465673657
1239 "flush_total_times_ns":49653
e8045d67 1240 "flush_operations":61,
82a56f0d
LC
1241 }
1242 },
1243 "stats":{
1244 "wr_highest_offset":2821110784,
1245 "wr_bytes":9786368,
1246 "wr_operations":692,
1247 "rd_bytes":122739200,
1248 "rd_operations":36604
e8045d67 1249 "flush_operations":51,
c488c7f6
CH
1250 "wr_total_times_ns":313253456
1251 "rd_total_times_ns":3465673657
1252 "flush_total_times_ns":49653
82a56f0d
LC
1253 }
1254 },
1255 {
1256 "device":"ide1-cd0",
1257 "stats":{
1258 "wr_highest_offset":0,
1259 "wr_bytes":0,
1260 "wr_operations":0,
1261 "rd_bytes":0,
1262 "rd_operations":0
e8045d67 1263 "flush_operations":0,
c488c7f6
CH
1264 "wr_total_times_ns":0
1265 "rd_total_times_ns":0
1266 "flush_total_times_ns":0
82a56f0d
LC
1267 }
1268 },
1269 {
1270 "device":"floppy0",
1271 "stats":{
1272 "wr_highest_offset":0,
1273 "wr_bytes":0,
1274 "wr_operations":0,
1275 "rd_bytes":0,
1276 "rd_operations":0
e8045d67 1277 "flush_operations":0,
c488c7f6
CH
1278 "wr_total_times_ns":0
1279 "rd_total_times_ns":0
1280 "flush_total_times_ns":0
82a56f0d
LC
1281 }
1282 },
1283 {
1284 "device":"sd0",
1285 "stats":{
1286 "wr_highest_offset":0,
1287 "wr_bytes":0,
1288 "wr_operations":0,
1289 "rd_bytes":0,
1290 "rd_operations":0
e8045d67 1291 "flush_operations":0,
c488c7f6
CH
1292 "wr_total_times_ns":0
1293 "rd_total_times_ns":0
1294 "flush_total_times_ns":0
82a56f0d
LC
1295 }
1296 }
1297 ]
1298 }
1299
1300EQMP
1301
1302SQMP
1303query-cpus
1304----------
1305
1306Show CPU information.
1307
1308Return a json-array. Each CPU is represented by a json-object, which contains:
1309
1310- "CPU": CPU index (json-int)
1311- "current": true if this is the current CPU, false otherwise (json-bool)
1312- "halted": true if the cpu is halted, false otherwise (json-bool)
1313- Current program counter. The key's name depends on the architecture:
1314 "pc": i386/x86_64 (json-int)
1315 "nip": PPC (json-int)
1316 "pc" and "npc": sparc (json-int)
1317 "PC": mips (json-int)
dc7a09cf 1318- "thread_id": ID of the underlying host thread (json-int)
82a56f0d
LC
1319
1320Example:
1321
1322-> { "execute": "query-cpus" }
1323<- {
1324 "return":[
1325 {
1326 "CPU":0,
1327 "current":true,
1328 "halted":false,
1329 "pc":3227107138
dc7a09cf 1330 "thread_id":3134
82a56f0d
LC
1331 },
1332 {
1333 "CPU":1,
1334 "current":false,
1335 "halted":true,
1336 "pc":7108165
dc7a09cf 1337 "thread_id":3135
82a56f0d
LC
1338 }
1339 ]
1340 }
1341
1342EQMP
1343
1344SQMP
1345query-pci
1346---------
1347
1348PCI buses and devices information.
1349
1350The returned value is a json-array of all buses. Each bus is represented by
1351a json-object, which has a key with a json-array of all PCI devices attached
1352to it. Each device is represented by a json-object.
1353
1354The bus json-object contains the following:
1355
1356- "bus": bus number (json-int)
1357- "devices": a json-array of json-objects, each json-object represents a
1358 PCI device
1359
1360The PCI device json-object contains the following:
1361
1362- "bus": identical to the parent's bus number (json-int)
1363- "slot": slot number (json-int)
1364- "function": function number (json-int)
1365- "class_info": a json-object containing:
1366 - "desc": device class description (json-string, optional)
1367 - "class": device class number (json-int)
1368- "id": a json-object containing:
1369 - "device": device ID (json-int)
1370 - "vendor": vendor ID (json-int)
1371- "irq": device's IRQ if assigned (json-int, optional)
1372- "qdev_id": qdev id string (json-string)
1373- "pci_bridge": It's a json-object, only present if this device is a
1374 PCI bridge, contains:
1375 - "bus": bus number (json-int)
1376 - "secondary": secondary bus number (json-int)
1377 - "subordinate": subordinate bus number (json-int)
1378 - "io_range": I/O memory range information, a json-object with the
1379 following members:
1380 - "base": base address, in bytes (json-int)
1381 - "limit": limit address, in bytes (json-int)
1382 - "memory_range": memory range information, a json-object with the
1383 following members:
1384 - "base": base address, in bytes (json-int)
1385 - "limit": limit address, in bytes (json-int)
1386 - "prefetchable_range": Prefetchable memory range information, a
1387 json-object with the following members:
1388 - "base": base address, in bytes (json-int)
1389 - "limit": limit address, in bytes (json-int)
1390 - "devices": a json-array of PCI devices if there's any attached, each
1391 each element is represented by a json-object, which contains
1392 the same members of the 'PCI device json-object' described
1393 above (optional)
1394- "regions": a json-array of json-objects, each json-object represents a
1395 memory region of this device
1396
1397The memory range json-object contains the following:
1398
1399- "base": base memory address (json-int)
1400- "limit": limit value (json-int)
1401
1402The region json-object can be an I/O region or a memory region, an I/O region
1403json-object contains the following:
1404
1405- "type": "io" (json-string, fixed)
1406- "bar": BAR number (json-int)
1407- "address": memory address (json-int)
1408- "size": memory size (json-int)
1409
1410A memory region json-object contains the following:
1411
1412- "type": "memory" (json-string, fixed)
1413- "bar": BAR number (json-int)
1414- "address": memory address (json-int)
1415- "size": memory size (json-int)
1416- "mem_type_64": true or false (json-bool)
1417- "prefetch": true or false (json-bool)
1418
1419Example:
1420
1421-> { "execute": "query-pci" }
1422<- {
1423 "return":[
1424 {
1425 "bus":0,
1426 "devices":[
1427 {
1428 "bus":0,
1429 "qdev_id":"",
1430 "slot":0,
1431 "class_info":{
1432 "class":1536,
1433 "desc":"Host bridge"
1434 },
1435 "id":{
1436 "device":32902,
1437 "vendor":4663
1438 },
1439 "function":0,
1440 "regions":[
1441
1442 ]
1443 },
1444 {
1445 "bus":0,
1446 "qdev_id":"",
1447 "slot":1,
1448 "class_info":{
1449 "class":1537,
1450 "desc":"ISA bridge"
1451 },
1452 "id":{
1453 "device":32902,
1454 "vendor":28672
1455 },
1456 "function":0,
1457 "regions":[
1458
1459 ]
1460 },
1461 {
1462 "bus":0,
1463 "qdev_id":"",
1464 "slot":1,
1465 "class_info":{
1466 "class":257,
1467 "desc":"IDE controller"
1468 },
1469 "id":{
1470 "device":32902,
1471 "vendor":28688
1472 },
1473 "function":1,
1474 "regions":[
1475 {
1476 "bar":4,
1477 "size":16,
1478 "address":49152,
1479 "type":"io"
1480 }
1481 ]
1482 },
1483 {
1484 "bus":0,
1485 "qdev_id":"",
1486 "slot":2,
1487 "class_info":{
1488 "class":768,
1489 "desc":"VGA controller"
1490 },
1491 "id":{
1492 "device":4115,
1493 "vendor":184
1494 },
1495 "function":0,
1496 "regions":[
1497 {
1498 "prefetch":true,
1499 "mem_type_64":false,
1500 "bar":0,
1501 "size":33554432,
1502 "address":4026531840,
1503 "type":"memory"
1504 },
1505 {
1506 "prefetch":false,
1507 "mem_type_64":false,
1508 "bar":1,
1509 "size":4096,
1510 "address":4060086272,
1511 "type":"memory"
1512 },
1513 {
1514 "prefetch":false,
1515 "mem_type_64":false,
1516 "bar":6,
1517 "size":65536,
1518 "address":-1,
1519 "type":"memory"
1520 }
1521 ]
1522 },
1523 {
1524 "bus":0,
1525 "qdev_id":"",
1526 "irq":11,
1527 "slot":4,
1528 "class_info":{
1529 "class":1280,
1530 "desc":"RAM controller"
1531 },
1532 "id":{
1533 "device":6900,
1534 "vendor":4098
1535 },
1536 "function":0,
1537 "regions":[
1538 {
1539 "bar":0,
1540 "size":32,
1541 "address":49280,
1542 "type":"io"
1543 }
1544 ]
1545 }
1546 ]
1547 }
1548 ]
1549 }
1550
1551Note: This example has been shortened as the real response is too long.
1552
1553EQMP
1554
1555SQMP
1556query-kvm
1557---------
1558
1559Show KVM information.
1560
1561Return a json-object with the following information:
1562
1563- "enabled": true if KVM support is enabled, false otherwise (json-bool)
1564- "present": true if QEMU has KVM support, false otherwise (json-bool)
1565
1566Example:
1567
1568-> { "execute": "query-kvm" }
1569<- { "return": { "enabled": true, "present": true } }
1570
1571EQMP
1572
292a2602
LC
1573 {
1574 .name = "query-kvm",
1575 .args_type = "",
1576 .mhandler.cmd_new = qmp_marshal_input_query_kvm,
1577 },
1578
82a56f0d
LC
1579SQMP
1580query-status
1581------------
1582
1583Return a json-object with the following information:
1584
1585- "running": true if the VM is running, or false if it is paused (json-bool)
1586- "singlestep": true if the VM is in single step mode,
1587 false otherwise (json-bool)
9e37b9dc
LC
1588- "status": one of the following values (json-string)
1589 "debug" - QEMU is running on a debugger
1590 "inmigrate" - guest is paused waiting for an incoming migration
1591 "internal-error" - An internal error that prevents further guest
1592 execution has occurred
1593 "io-error" - the last IOP has failed and the device is configured
1594 to pause on I/O errors
1595 "paused" - guest has been paused via the 'stop' command
1596 "postmigrate" - guest is paused following a successful 'migrate'
1597 "prelaunch" - QEMU was started with -S and guest has not started
1598 "finish-migrate" - guest is paused to finish the migration process
1599 "restore-vm" - guest is paused to restore VM state
1600 "running" - guest is actively running
1601 "save-vm" - guest is paused to save the VM state
1602 "shutdown" - guest is shut down (and -no-shutdown is in use)
1603 "watchdog" - the watchdog action is configured to pause and
1604 has been triggered
82a56f0d
LC
1605
1606Example:
1607
1608-> { "execute": "query-status" }
9e37b9dc 1609<- { "return": { "running": true, "singlestep": false, "status": "running" } }
82a56f0d
LC
1610
1611EQMP
1fa9a5e4
LC
1612
1613 {
1614 .name = "query-status",
1615 .args_type = "",
1616 .mhandler.cmd_new = qmp_marshal_input_query_status,
1617 },
82a56f0d
LC
1618
1619SQMP
1620query-mice
1621----------
1622
1623Show VM mice information.
1624
1625Each mouse is represented by a json-object, the returned value is a json-array
1626of all mice.
1627
1628The mouse json-object contains the following:
1629
1630- "name": mouse's name (json-string)
1631- "index": mouse's index (json-int)
1632- "current": true if this mouse is receiving events, false otherwise (json-bool)
1633- "absolute": true if the mouse generates absolute input events (json-bool)
1634
1635Example:
1636
1637-> { "execute": "query-mice" }
1638<- {
1639 "return":[
1640 {
1641 "name":"QEMU Microsoft Mouse",
1642 "index":0,
1643 "current":false,
1644 "absolute":false
1645 },
1646 {
1647 "name":"QEMU PS/2 Mouse",
1648 "index":1,
1649 "current":true,
1650 "absolute":true
1651 }
1652 ]
1653 }
1654
1655EQMP
1656
1657SQMP
1658query-vnc
1659---------
1660
1661Show VNC server information.
1662
1663Return a json-object with server information. Connected clients are returned
1664as a json-array of json-objects.
1665
1666The main json-object contains the following:
1667
1668- "enabled": true or false (json-bool)
1669- "host": server's IP address (json-string)
1670- "family": address family (json-string)
1671 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1672- "service": server's port number (json-string)
1673- "auth": authentication method (json-string)
1674 - Possible values: "invalid", "none", "ra2", "ra2ne", "sasl", "tight",
1675 "tls", "ultra", "unknown", "vencrypt", "vencrypt",
1676 "vencrypt+plain", "vencrypt+tls+none",
1677 "vencrypt+tls+plain", "vencrypt+tls+sasl",
1678 "vencrypt+tls+vnc", "vencrypt+x509+none",
1679 "vencrypt+x509+plain", "vencrypt+x509+sasl",
1680 "vencrypt+x509+vnc", "vnc"
1681- "clients": a json-array of all connected clients
1682
1683Clients are described by a json-object, each one contain the following:
1684
1685- "host": client's IP address (json-string)
1686- "family": address family (json-string)
1687 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1688- "service": client's port number (json-string)
1689- "x509_dname": TLS dname (json-string, optional)
1690- "sasl_username": SASL username (json-string, optional)
1691
1692Example:
1693
1694-> { "execute": "query-vnc" }
1695<- {
1696 "return":{
1697 "enabled":true,
1698 "host":"0.0.0.0",
1699 "service":"50402",
1700 "auth":"vnc",
1701 "family":"ipv4",
1702 "clients":[
1703 {
1704 "host":"127.0.0.1",
1705 "service":"50401",
1706 "family":"ipv4"
1707 }
1708 ]
1709 }
1710 }
1711
1712EQMP
1713
cb42a870
GH
1714SQMP
1715query-spice
1716-----------
1717
1718Show SPICE server information.
1719
1720Return a json-object with server information. Connected clients are returned
1721as a json-array of json-objects.
1722
1723The main json-object contains the following:
1724
1725- "enabled": true or false (json-bool)
1726- "host": server's IP address (json-string)
1727- "port": server's port number (json-int, optional)
1728- "tls-port": server's port number (json-int, optional)
1729- "auth": authentication method (json-string)
1730 - Possible values: "none", "spice"
1731- "channels": a json-array of all active channels clients
1732
1733Channels are described by a json-object, each one contain the following:
1734
1735- "host": client's IP address (json-string)
1736- "family": address family (json-string)
1737 - Possible values: "ipv4", "ipv6", "unix", "unknown"
1738- "port": client's port number (json-string)
1739- "connection-id": spice connection id. All channels with the same id
1740 belong to the same spice session (json-int)
1741- "channel-type": channel type. "1" is the main control channel, filter for
1742 this one if you want track spice sessions only (json-int)
1743- "channel-id": channel id. Usually "0", might be different needed when
1744 multiple channels of the same type exist, such as multiple
1745 display channels in a multihead setup (json-int)
1746- "tls": whevener the channel is encrypted (json-bool)
1747
1748Example:
1749
1750-> { "execute": "query-spice" }
1751<- {
1752 "return": {
1753 "enabled": true,
1754 "auth": "spice",
1755 "port": 5920,
1756 "tls-port": 5921,
1757 "host": "0.0.0.0",
1758 "channels": [
1759 {
1760 "port": "54924",
1761 "family": "ipv4",
1762 "channel-type": 1,
1763 "connection-id": 1804289383,
1764 "host": "127.0.0.1",
1765 "channel-id": 0,
1766 "tls": true
1767 },
1768 {
1769 "port": "36710",
1770 "family": "ipv4",
1771 "channel-type": 4,
1772 "connection-id": 1804289383,
1773 "host": "127.0.0.1",
1774 "channel-id": 0,
1775 "tls": false
1776 },
1777 [ ... more channels follow ... ]
1778 ]
1779 }
1780 }
1781
1782EQMP
1783
82a56f0d
LC
1784SQMP
1785query-name
1786----------
1787
1788Show VM name.
1789
1790Return a json-object with the following information:
1791
1792- "name": VM's name (json-string, optional)
1793
1794Example:
1795
1796-> { "execute": "query-name" }
1797<- { "return": { "name": "qemu-name" } }
1798
1799EQMP
1800
48a32bed
AL
1801 {
1802 .name = "query-name",
1803 .args_type = "",
1804 .mhandler.cmd_new = qmp_marshal_input_query_name,
1805 },
1806
82a56f0d
LC
1807SQMP
1808query-uuid
1809----------
1810
1811Show VM UUID.
1812
1813Return a json-object with the following information:
1814
1815- "UUID": Universally Unique Identifier (json-string)
1816
1817Example:
1818
1819-> { "execute": "query-uuid" }
1820<- { "return": { "UUID": "550e8400-e29b-41d4-a716-446655440000" } }
1821
1822EQMP
1823
1824SQMP
1825query-migrate
1826-------------
1827
1828Migration status.
1829
1830Return a json-object. If migration is active there will be another json-object
1831with RAM migration status and if block migration is active another one with
1832block migration status.
1833
1834The main json-object contains the following:
1835
1836- "status": migration status (json-string)
1837 - Possible values: "active", "completed", "failed", "cancelled"
1838- "ram": only present if "status" is "active", it is a json-object with the
1839 following RAM information (in bytes):
1840 - "transferred": amount transferred (json-int)
1841 - "remaining": amount remaining (json-int)
1842 - "total": total (json-int)
1843- "disk": only present if "status" is "active" and it is a block migration,
1844 it is a json-object with the following disk information (in bytes):
1845 - "transferred": amount transferred (json-int)
1846 - "remaining": amount remaining (json-int)
1847 - "total": total (json-int)
1848
1849Examples:
1850
18511. Before the first migration
1852
1853-> { "execute": "query-migrate" }
1854<- { "return": {} }
1855
18562. Migration is done and has succeeded
1857
1858-> { "execute": "query-migrate" }
1859<- { "return": { "status": "completed" } }
1860
18613. Migration is done and has failed
1862
1863-> { "execute": "query-migrate" }
1864<- { "return": { "status": "failed" } }
1865
18664. Migration is being performed and is not a block migration:
1867
1868-> { "execute": "query-migrate" }
1869<- {
1870 "return":{
1871 "status":"active",
1872 "ram":{
1873 "transferred":123,
1874 "remaining":123,
1875 "total":246
1876 }
1877 }
1878 }
1879
18805. Migration is being performed and is a block migration:
1881
1882-> { "execute": "query-migrate" }
1883<- {
1884 "return":{
1885 "status":"active",
1886 "ram":{
1887 "total":1057024,
1888 "remaining":1053304,
1889 "transferred":3720
1890 },
1891 "disk":{
1892 "total":20971520,
1893 "remaining":20880384,
1894 "transferred":91136
1895 }
1896 }
1897 }
1898
1899EQMP
1900
1901SQMP
1902query-balloon
1903-------------
1904
1905Show balloon information.
1906
1907Make an asynchronous request for balloon info. When the request completes a
1908json-object will be returned containing the following data:
1909
1910- "actual": current balloon value in bytes (json-int)
1911- "mem_swapped_in": Amount of memory swapped in bytes (json-int, optional)
1912- "mem_swapped_out": Amount of memory swapped out in bytes (json-int, optional)
1913- "major_page_faults": Number of major faults (json-int, optional)
1914- "minor_page_faults": Number of minor faults (json-int, optional)
1915- "free_mem": Total amount of free and unused memory in
1916 bytes (json-int, optional)
1917- "total_mem": Total amount of available memory in bytes (json-int, optional)
1918
1919Example:
1920
1921-> { "execute": "query-balloon" }
1922<- {
1923 "return":{
1924 "actual":1073741824,
1925 "mem_swapped_in":0,
1926 "mem_swapped_out":0,
1927 "major_page_faults":142,
1928 "minor_page_faults":239245,
1929 "free_mem":1014185984,
1930 "total_mem":1044668416
1931 }
1932 }
1933
1934EQMP
1935