qerror: Remove assert_no_error()
[qemu.git] / docs / qmp / qmp-events.txt
blob6b87e9786a2d4d059c0491238a013257acbd6013
1                    QEMU Machine Protocol Events
2                    ============================
4 BALLOON_CHANGE
5 --------------
7 Emitted when the guest changes the actual BALLOON level. This
8 value is equivalent to the 'actual' field return by the
9 'query-balloon' command
11 Data:
13 - "actual": actual level of the guest memory balloon in bytes (json-number)
15 Example:
17 { "event": "BALLOON_CHANGE",
18     "data": { "actual": 944766976 },
19     "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
21 BLOCK_IMAGE_CORRUPTED
22 ---------------------
24 Emitted when a disk image is being marked corrupt.
26 Data:
28 - "device": Device name (json-string)
29 - "msg":    Informative message (e.g., reason for the corruption) (json-string)
30 - "offset": If the corruption resulted from an image access, this is the access
31             offset into the image (json-int)
32 - "size":   If the corruption resulted from an image access, this is the access
33             size (json-int)
35 Example:
37 { "event": "BLOCK_IMAGE_CORRUPTED",
38     "data": { "device": "ide0-hd0",
39         "msg": "Prevented active L1 table overwrite", "offset": 196608,
40         "size": 65536 },
41     "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
43 BLOCK_IO_ERROR
44 --------------
46 Emitted when a disk I/O error occurs.
48 Data:
50 - "device": device name (json-string)
51 - "operation": I/O operation (json-string, "read" or "write")
52 - "action": action that has been taken, it's one of the following (json-string):
53     "ignore": error has been ignored
54     "report": error has been reported to the device
55     "stop": error caused VM to be stopped
57 Example:
59 { "event": "BLOCK_IO_ERROR",
60     "data": { "device": "ide0-hd1",
61               "operation": "write",
62               "action": "stop" },
63     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
65 Note: If action is "stop", a STOP event will eventually follow the
66 BLOCK_IO_ERROR event.
68 BLOCK_JOB_CANCELLED
69 -------------------
71 Emitted when a block job has been cancelled.
73 Data:
75 - "type":     Job type (json-string; "stream" for image streaming
76                                      "commit" for block commit)
77 - "device":   Device name (json-string)
78 - "len":      Maximum progress value (json-int)
79 - "offset":   Current progress value (json-int)
80               On success this is equal to len.
81               On failure this is less than len.
82 - "speed":    Rate limit, bytes per second (json-int)
84 Example:
86 { "event": "BLOCK_JOB_CANCELLED",
87      "data": { "type": "stream", "device": "virtio-disk0",
88                "len": 10737418240, "offset": 134217728,
89                "speed": 0 },
90      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
92 BLOCK_JOB_COMPLETED
93 -------------------
95 Emitted when a block job has completed.
97 Data:
99 - "type":     Job type (json-string; "stream" for image streaming
100                                      "commit" for block commit)
101 - "device":   Device name (json-string)
102 - "len":      Maximum progress value (json-int)
103 - "offset":   Current progress value (json-int)
104               On success this is equal to len.
105               On failure this is less than len.
106 - "speed":    Rate limit, bytes per second (json-int)
107 - "error":    Error message (json-string, optional)
108               Only present on failure.  This field contains a human-readable
109               error message.  There are no semantics other than that streaming
110               has failed and clients should not try to interpret the error
111               string.
113 Example:
115 { "event": "BLOCK_JOB_COMPLETED",
116      "data": { "type": "stream", "device": "virtio-disk0",
117                "len": 10737418240, "offset": 10737418240,
118                "speed": 0 },
119      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
121 BLOCK_JOB_ERROR
122 ---------------
124 Emitted when a block job encounters an error.
126 Data:
128 - "device": device name (json-string)
129 - "operation": I/O operation (json-string, "read" or "write")
130 - "action": action that has been taken, it's one of the following (json-string):
131     "ignore": error has been ignored, the job may fail later
132     "report": error will be reported and the job canceled
133     "stop": error caused job to be paused
135 Example:
137 { "event": "BLOCK_JOB_ERROR",
138     "data": { "device": "ide0-hd1",
139               "operation": "write",
140               "action": "stop" },
141     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
143 BLOCK_JOB_READY
144 ---------------
146 Emitted when a block job is ready to complete.
148 Data:
150 - "device": device name (json-string)
152 Example:
154 { "event": "BLOCK_JOB_READY",
155     "data": { "device": "ide0-hd1" },
156     "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
158 Note: The "ready to complete" status is always reset by a BLOCK_JOB_ERROR
159 event.
161 DEVICE_DELETED
162 --------------
164 Emitted whenever the device removal completion is acknowledged
165 by the guest.
166 At this point, it's safe to reuse the specified device ID.
167 Device removal can be initiated by the guest or by HMP/QMP commands.
169 Data:
171 - "device": device name (json-string, optional)
172 - "path": device path (json-string)
174 { "event": "DEVICE_DELETED",
175   "data": { "device": "virtio-net-pci-0",
176             "path": "/machine/peripheral/virtio-net-pci-0" },
177   "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
179 DEVICE_TRAY_MOVED
180 -----------------
182 It's emitted whenever the tray of a removable device is moved by the guest
183 or by HMP/QMP commands.
185 Data:
187 - "device": device name (json-string)
188 - "tray-open": true if the tray has been opened or false if it has been closed
189                (json-bool)
191 { "event": "DEVICE_TRAY_MOVED",
192   "data": { "device": "ide1-cd0",
193             "tray-open": true
194   },
195   "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
197 GUEST_PANICKED
198 --------------
200 Emitted when guest OS panic is detected.
202 Data:
204 - "action": Action that has been taken (json-string, currently always "pause").
206 Example:
208 { "event": "GUEST_PANICKED",
209      "data": { "action": "pause" } }
211 NIC_RX_FILTER_CHANGED
212 ---------------------
214 The event is emitted once until the query command is executed,
215 the first event will always be emitted.
217 Data:
219 - "name": net client name (json-string)
220 - "path": device path (json-string)
222 { "event": "NIC_RX_FILTER_CHANGED",
223   "data": { "name": "vnet0",
224             "path": "/machine/peripheral/vnet0/virtio-backend" },
225   "timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
228 RESET
229 -----
231 Emitted when the Virtual Machine is reseted.
233 Data: None.
235 Example:
237 { "event": "RESET",
238     "timestamp": { "seconds": 1267041653, "microseconds": 9518 } }
240 RESUME
241 ------
243 Emitted when the Virtual Machine resumes execution.
245 Data: None.
247 Example:
249 { "event": "RESUME",
250     "timestamp": { "seconds": 1271770767, "microseconds": 582542 } }
252 RTC_CHANGE
253 ----------
255 Emitted when the guest changes the RTC time.
257 Data:
259 - "offset": Offset between base RTC clock (as specified by -rtc base), and
260 new RTC clock value (json-number)
262 Example:
264 { "event": "RTC_CHANGE",
265     "data": { "offset": 78 },
266     "timestamp": { "seconds": 1267020223, "microseconds": 435656 } }
268 SHUTDOWN
269 --------
271 Emitted when the Virtual Machine is powered down.
273 Data: None.
275 Example:
277 { "event": "SHUTDOWN",
278     "timestamp": { "seconds": 1267040730, "microseconds": 682951 } }
280 Note: If the command-line option "-no-shutdown" has been specified, a STOP
281 event will eventually follow the SHUTDOWN event.
283 SPICE_CONNECTED, SPICE_DISCONNECTED
284 -----------------------------------
286 Emitted when a SPICE client connects or disconnects.
288 Data:
290 - "server": Server information (json-object)
291   - "host": IP address (json-string)
292   - "port": port number (json-string)
293   - "family": address family (json-string, "ipv4" or "ipv6")
294 - "client": Client information (json-object)
295   - "host": IP address (json-string)
296   - "port": port number (json-string)
297   - "family": address family (json-string, "ipv4" or "ipv6")
299 Example:
301 { "timestamp": {"seconds": 1290688046, "microseconds": 388707},
302   "event": "SPICE_CONNECTED",
303   "data": {
304     "server": { "port": "5920", "family": "ipv4", "host": "127.0.0.1"},
305     "client": {"port": "52873", "family": "ipv4", "host": "127.0.0.1"}
308 SPICE_INITIALIZED
309 -----------------
311 Emitted after initial handshake and authentication takes place (if any)
312 and the SPICE channel is up'n'running
314 Data:
316 - "server": Server information (json-object)
317   - "host": IP address (json-string)
318   - "port": port number (json-string)
319   - "family": address family (json-string, "ipv4" or "ipv6")
320   - "auth": authentication method (json-string, optional)
321 - "client": Client information (json-object)
322   - "host": IP address (json-string)
323   - "port": port number (json-string)
324   - "family": address family (json-string, "ipv4" or "ipv6")
325   - "connection-id": spice connection id.  All channels with the same id
326                      belong to the same spice session (json-int)
327   - "channel-type": channel type.  "1" is the main control channel, filter for
328                     this one if you want track spice sessions only (json-int)
329   - "channel-id": channel id.  Usually "0", might be different needed when
330                   multiple channels of the same type exist, such as multiple
331                   display channels in a multihead setup (json-int)
332   - "tls": whevener the channel is encrypted (json-bool)
334 Example:
336 { "timestamp": {"seconds": 1290688046, "microseconds": 417172},
337   "event": "SPICE_INITIALIZED",
338   "data": {"server": {"auth": "spice", "port": "5921",
339                       "family": "ipv4", "host": "127.0.0.1"},
340            "client": {"port": "49004", "family": "ipv4", "channel-type": 3,
341                       "connection-id": 1804289383, "host": "127.0.0.1",
342                       "channel-id": 0, "tls": true}
345 STOP
346 ----
348 Emitted when the Virtual Machine is stopped.
350 Data: None.
352 Example:
354 { "event": "STOP",
355     "timestamp": { "seconds": 1267041730, "microseconds": 281295 } }
357 SUSPEND
358 -------
360 Emitted when guest enters S3 state.
362 Data: None.
364 Example:
366 { "event": "SUSPEND",
367      "timestamp": { "seconds": 1344456160, "microseconds": 309119 } }
369 SUSPEND_DISK
370 ------------
372 Emitted when the guest makes a request to enter S4 state.
374 Data: None.
376 Example:
378 { "event": "SUSPEND_DISK",
379      "timestamp": { "seconds": 1344456160, "microseconds": 309119 } }
381 Note: QEMU shuts down when entering S4 state.
383 VNC_CONNECTED
384 -------------
386 Emitted when a VNC client establishes a connection.
388 Data:
390 - "server": Server information (json-object)
391   - "host": IP address (json-string)
392   - "service": port number (json-string)
393   - "family": address family (json-string, "ipv4" or "ipv6")
394   - "auth": authentication method (json-string, optional)
395 - "client": Client information (json-object)
396   - "host": IP address (json-string)
397   - "service": port number (json-string)
398   - "family": address family (json-string, "ipv4" or "ipv6")
400 Example:
402 { "event": "VNC_CONNECTED",
403     "data": {
404         "server": { "auth": "sasl", "family": "ipv4",
405                     "service": "5901", "host": "0.0.0.0" },
406         "client": { "family": "ipv4", "service": "58425",
407                     "host": "127.0.0.1" } },
408     "timestamp": { "seconds": 1262976601, "microseconds": 975795 } }
411 Note: This event is emitted before any authentication takes place, thus
412 the authentication ID is not provided.
414 VNC_DISCONNECTED
415 ----------------
417 Emitted when the connection is closed.
419 Data:
421 - "server": Server information (json-object)
422   - "host": IP address (json-string)
423   - "service": port number (json-string)
424   - "family": address family (json-string, "ipv4" or "ipv6")
425   - "auth": authentication method (json-string, optional)
426 - "client": Client information (json-object)
427   - "host": IP address (json-string)
428   - "service": port number (json-string)
429   - "family": address family (json-string, "ipv4" or "ipv6")
430   - "x509_dname": TLS dname (json-string, optional)
431   - "sasl_username": SASL username (json-string, optional)
433 Example:
435 { "event": "VNC_DISCONNECTED",
436     "data": {
437         "server": { "auth": "sasl", "family": "ipv4",
438                     "service": "5901", "host": "0.0.0.0" },
439         "client": { "family": "ipv4", "service": "58425",
440                     "host": "127.0.0.1", "sasl_username": "luiz" } },
441     "timestamp": { "seconds": 1262976601, "microseconds": 975795 } }
443 VNC_INITIALIZED
444 ---------------
446 Emitted after authentication takes place (if any) and the VNC session is
447 made active.
449 Data:
451 - "server": Server information (json-object)
452   - "host": IP address (json-string)
453   - "service": port number (json-string)
454   - "family": address family (json-string, "ipv4" or "ipv6")
455   - "auth": authentication method (json-string, optional)
456 - "client": Client information (json-object)
457   - "host": IP address (json-string)
458   - "service": port number (json-string)
459   - "family": address family (json-string, "ipv4" or "ipv6")
460   - "x509_dname": TLS dname (json-string, optional)
461   - "sasl_username": SASL username (json-string, optional)
463 Example:
465 { "event": "VNC_INITIALIZED",
466     "data": {
467         "server": { "auth": "sasl", "family": "ipv4",
468                     "service": "5901", "host": "0.0.0.0"},
469         "client": { "family": "ipv4", "service": "46089",
470                     "host": "127.0.0.1", "sasl_username": "luiz" } },
471         "timestamp": { "seconds": 1263475302, "microseconds": 150772 } }
473 WAKEUP
474 ------
476 Emitted when the guest has woken up from S3 and is running.
478 Data: None.
480 Example:
482 { "event": "WATCHDOG",
483      "timestamp": { "seconds": 1344522075, "microseconds": 745528 } }
485 WATCHDOG
486 --------
488 Emitted when the watchdog device's timer is expired.
490 Data:
492 - "action": Action that has been taken, it's one of the following (json-string):
493             "reset", "shutdown", "poweroff", "pause", "debug", or "none"
495 Example:
497 { "event": "WATCHDOG",
498      "data": { "action": "reset" },
499      "timestamp": { "seconds": 1267061043, "microseconds": 959568 } }
501 Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
502 followed respectively by the RESET, SHUTDOWN, or STOP events.