mirror of https://github.com/xemu-project/xemu.git
qmp-events: move 'VSERPORT_CHANGE' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
parent
2ee7fea7ce
commit
14df1ea168
|
@ -49,21 +49,3 @@ Data: None.
|
||||||
Example:
|
Example:
|
||||||
{"timestamp": {"seconds": 1449669631, "microseconds": 239225},
|
{"timestamp": {"seconds": 1449669631, "microseconds": 239225},
|
||||||
"event": "MIGRATION_PASS", "data": {"pass": 2}}
|
"event": "MIGRATION_PASS", "data": {"pass": 2}}
|
||||||
|
|
||||||
VSERPORT_CHANGE
|
|
||||||
---------------
|
|
||||||
|
|
||||||
Emitted when the guest opens or closes a virtio-serial port.
|
|
||||||
|
|
||||||
Data:
|
|
||||||
|
|
||||||
- "id": device identifier of the virtio-serial port (json-string)
|
|
||||||
- "open": true if the guest has opened the virtio-serial port (json-bool)
|
|
||||||
|
|
||||||
Example:
|
|
||||||
|
|
||||||
{ "event": "VSERPORT_CHANGE",
|
|
||||||
"data": { "id": "channel0", "open": true },
|
|
||||||
"timestamp": { "seconds": 1401385907, "microseconds": 422329 } }
|
|
||||||
|
|
||||||
Note: this event is rate-limited separately for each "id".
|
|
||||||
|
|
|
@ -571,6 +571,13 @@
|
||||||
# @open: true if the guest has opened the virtio-serial port
|
# @open: true if the guest has opened the virtio-serial port
|
||||||
#
|
#
|
||||||
# Since: 2.1
|
# Since: 2.1
|
||||||
|
#
|
||||||
|
# Example:
|
||||||
|
#
|
||||||
|
# <- { "event": "VSERPORT_CHANGE",
|
||||||
|
# "data": { "id": "channel0", "open": true },
|
||||||
|
# "timestamp": { "seconds": 1401385907, "microseconds": 422329 } }
|
||||||
|
#
|
||||||
##
|
##
|
||||||
{ 'event': 'VSERPORT_CHANGE',
|
{ 'event': 'VSERPORT_CHANGE',
|
||||||
'data': { 'id': 'str', 'open': 'bool' } }
|
'data': { 'id': 'str', 'open': 'bool' } }
|
||||||
|
|
Loading…
Reference in New Issue