4 # Emitted when the virtual machine has shutdown, possibly indicating that QEMU
5 # is about about to exit.
7 # Note: If the command-line option "-no-shutdown" has been specified, qemu will
8 # not exit, and a STOP event will eventually follow the SHUTDOWN event
12 { 'event': 'SHUTDOWN' }
17 # Emitted when the virtual machine is powered down through the power control
18 # system, such as via ACPI.
22 { 'event': 'POWERDOWN' }
27 # Emitted when the virtual machine is reset
36 # Emitted when the virtual machine is stopped
45 # Emitted when the virtual machine resumes execution
54 # Emitted when guest enters a hardware suspension state, for example, S3 state,
55 # which is sometimes called standby state
59 { 'event': 'SUSPEND' }
64 # Emitted when guest enters a hardware suspension state with data saved on
65 # disk, for example, S4 state, which is sometimes called hibernate state
67 # Note: QEMU shuts down (similar to event @SHUTDOWN) when entering this state
71 { 'event': 'SUSPEND_DISK' }
76 # Emitted when the guest has woken up from suspend state and is running
85 # Emitted when the guest changes the RTC time.
87 # @offset: offset between base RTC clock (as specified by -rtc base), and
92 { 'event': 'RTC_CHANGE',
93 'data': { 'offset': 'int' } }
98 # Emitted when the watchdog device's timer is expired
100 # @action: action that has been taken
102 # Note: If action is "reset", "shutdown", or "pause" the WATCHDOG event is
103 # followed respectively by the RESET, SHUTDOWN, or STOP events
107 { 'event': 'WATCHDOG',
108 'data': { 'action': 'WatchdogExpirationAction' } }
113 # Emitted whenever the device removal completion is acknowledged by the guest.
114 # At this point, it's safe to reuse the specified device ID. Device removal can
115 # be initiated by the guest or by HMP/QMP commands.
117 # @device: #optional, device name
123 { 'event': 'DEVICE_DELETED',
124 'data': { '*device': 'str', 'path': 'str' } }
127 # @NIC_RX_FILTER_CHANGED
129 # Emitted once until the 'query-rx-filter' command is executed, the first event
130 # will always be emitted
132 # @name: #optional, net client name
138 { 'event': 'NIC_RX_FILTER_CHANGED',
139 'data': { '*name': 'str', 'path': 'str' } }
144 # Emitted when a VNC client establishes a connection
146 # @server: server information
148 # @client: client information
150 # Note: This event is emitted before any authentication takes place, thus
151 # the authentication ID is not provided
155 { 'event': 'VNC_CONNECTED',
156 'data': { 'server': 'VncServerInfo',
157 'client': 'VncBasicInfo' } }
162 # Emitted after authentication takes place (if any) and the VNC session is
165 # @server: server information
167 # @client: client information
171 { 'event': 'VNC_INITIALIZED',
172 'data': { 'server': 'VncServerInfo',
173 'client': 'VncClientInfo' } }
178 # Emitted when the connection is closed
180 # @server: server information
182 # @client: client information
186 { 'event': 'VNC_DISCONNECTED',
187 'data': { 'server': 'VncServerInfo',
188 'client': 'VncClientInfo' } }
193 # Emitted when a SPICE client establishes a connection
195 # @server: server information
197 # @client: client information
201 { 'event': 'SPICE_CONNECTED',
202 'data': { 'server': 'SpiceBasicInfo',
203 'client': 'SpiceBasicInfo' } }
208 # Emitted after initial handshake and authentication takes place (if any)
209 # and the SPICE channel is up and running
211 # @server: server information
213 # @client: client information
217 { 'event': 'SPICE_INITIALIZED',
218 'data': { 'server': 'SpiceServerInfo',
219 'client': 'SpiceChannel' } }
222 # @SPICE_DISCONNECTED
224 # Emitted when the SPICE connection is closed
226 # @server: server information
228 # @client: client information
232 { 'event': 'SPICE_DISCONNECTED',
233 'data': { 'server': 'SpiceBasicInfo',
234 'client': 'SpiceBasicInfo' } }
237 # @SPICE_MIGRATE_COMPLETED
239 # Emitted when SPICE migration has completed
243 { 'event': 'SPICE_MIGRATE_COMPLETED' }
248 # Emitted when guest executes ACPI _OST method.
252 # @info: ACPIOSTInfo type as described in qapi-schema.json
254 { 'event': 'ACPI_DEVICE_OST',
255 'data': { 'info': 'ACPIOSTInfo' } }
260 # Emitted when the guest changes the actual BALLOON level. This value is
261 # equivalent to the @actual field return by the 'query-balloon' command
263 # @actual: actual level of the guest memory balloon in bytes
267 { 'event': 'BALLOON_CHANGE',
268 'data': { 'actual': 'int' } }
273 # Emitted when guest OS panic is detected
275 # @action: action that has been taken, currently always "pause"
279 { 'event': 'GUEST_PANICKED',
280 'data': { 'action': 'GuestPanicAction' } }
285 # Emitted by the Quorum block driver if it fails to establish a quorum
287 # @reference: device name if defined else node name
289 # @sector-num: number of the first sector of the failed read operation
291 # @sector-count: failed read operation sector count
295 { 'event': 'QUORUM_FAILURE',
296 'data': { 'reference': 'str', 'sector-num': 'int', 'sector-count': 'int' } }
301 # Emitted to report a corruption of a Quorum file
303 # @error: #optional, error message. Only present on failure. This field
304 # contains a human-readable error message. There are no semantics other
305 # than that the block layer reported an error and clients should not
306 # try to interpret the error string.
308 # @node-name: the graph node name of the block driver state
310 # @sector-num: number of the first sector of the failed read operation
312 # @sector-count: failed read operation sector count
316 { 'event': 'QUORUM_REPORT_BAD',
317 'data': { '*error': 'str', 'node-name': 'str',
318 'sector-num': 'int', 'sector-count': 'int' } }