2014-08-25 11:19:57 +00:00
|
|
|
# -*- mode: python -*-
|
2021-12-20 14:56:24 +00:00
|
|
|
# vim: filetype=python
|
2014-08-25 11:19:57 +00:00
|
|
|
#
|
2016-07-11 10:53:57 +00:00
|
|
|
# Copyright (C) 2011-2016 Lluís Vilanova <vilanova@ac.upc.edu>
|
2014-08-25 11:19:57 +00:00
|
|
|
#
|
|
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
|
2017-01-13 14:41:23 +00:00
|
|
|
##
|
2017-08-24 19:14:08 +00:00
|
|
|
# = Tracing
|
2017-01-13 14:41:23 +00:00
|
|
|
##
|
2014-08-25 11:19:57 +00:00
|
|
|
|
|
|
|
##
|
|
|
|
# @TraceEventState:
|
|
|
|
#
|
|
|
|
# State of a tracing event.
|
|
|
|
#
|
|
|
|
# @unavailable: The event is statically disabled.
|
|
|
|
#
|
|
|
|
# @disabled: The event is dynamically disabled.
|
|
|
|
#
|
|
|
|
# @enabled: The event is dynamically enabled.
|
|
|
|
#
|
2016-11-17 15:54:55 +00:00
|
|
|
# Since: 2.2
|
2014-08-25 11:19:57 +00:00
|
|
|
##
|
|
|
|
{ 'enum': 'TraceEventState',
|
|
|
|
'data': ['unavailable', 'disabled', 'enabled'] }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @TraceEventInfo:
|
|
|
|
#
|
|
|
|
# Information of a tracing event.
|
|
|
|
#
|
|
|
|
# @name: Event name.
|
2023-04-28 10:54:29 +00:00
|
|
|
#
|
2014-08-25 11:19:57 +00:00
|
|
|
# @state: Tracing state.
|
2023-04-28 10:54:29 +00:00
|
|
|
#
|
2016-07-11 10:53:57 +00:00
|
|
|
# @vcpu: Whether this is a per-vCPU event (since 2.7).
|
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# Features:
|
2023-07-20 07:16:09 +00:00
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# @deprecated: Member @vcpu is deprecated, and always ignored.
|
2014-08-25 11:19:57 +00:00
|
|
|
#
|
2016-11-17 15:54:55 +00:00
|
|
|
# Since: 2.2
|
2014-08-25 11:19:57 +00:00
|
|
|
##
|
2015-05-04 15:05:27 +00:00
|
|
|
{ 'struct': 'TraceEventInfo',
|
2023-05-26 16:53:56 +00:00
|
|
|
'data': {'name': 'str', 'state': 'TraceEventState',
|
|
|
|
'vcpu': { 'type': 'bool', 'features': ['deprecated'] } } }
|
2014-08-25 11:19:57 +00:00
|
|
|
|
|
|
|
##
|
|
|
|
# @trace-event-get-state:
|
|
|
|
#
|
|
|
|
# Query the state of events.
|
|
|
|
#
|
|
|
|
# @name: Event name pattern (case-sensitive glob).
|
2023-04-28 10:54:29 +00:00
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# @vcpu: The vCPU to query (since 2.7).
|
2014-08-25 11:19:57 +00:00
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# Features:
|
2023-07-20 07:16:09 +00:00
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# @deprecated: Member @vcpu is deprecated, and always ignored.
|
2020-02-13 17:56:33 +00:00
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# Returns: a list of @TraceEventInfo for the matching events
|
2020-02-13 17:56:26 +00:00
|
|
|
#
|
2016-11-17 15:54:55 +00:00
|
|
|
# Since: 2.2
|
2016-06-23 13:20:58 +00:00
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
2024-02-16 14:58:34 +00:00
|
|
|
# -> { "execute": "trace-event-get-state",
|
|
|
|
# "arguments": { "name": "qemu_memalign" } }
|
|
|
|
# <- { "return": [ { "name": "qemu_memalign", "state": "disabled", "vcpu": false } ] }
|
2014-08-25 11:19:57 +00:00
|
|
|
##
|
|
|
|
{ 'command': 'trace-event-get-state',
|
2023-05-26 16:53:56 +00:00
|
|
|
'data': {'name': 'str',
|
|
|
|
'*vcpu': {'type': 'int', 'features': ['deprecated'] } },
|
2014-08-25 11:19:57 +00:00
|
|
|
'returns': ['TraceEventInfo'] }
|
|
|
|
|
|
|
|
##
|
|
|
|
# @trace-event-set-state:
|
|
|
|
#
|
|
|
|
# Set the dynamic tracing state of events.
|
|
|
|
#
|
|
|
|
# @name: Event name pattern (case-sensitive glob).
|
2023-04-28 10:54:29 +00:00
|
|
|
#
|
2014-08-25 11:19:57 +00:00
|
|
|
# @enable: Whether to enable tracing.
|
2023-04-28 10:54:29 +00:00
|
|
|
#
|
2017-03-15 12:57:06 +00:00
|
|
|
# @ignore-unavailable: Do not match unavailable events with @name.
|
2023-04-28 10:54:29 +00:00
|
|
|
#
|
2017-03-15 12:57:06 +00:00
|
|
|
# @vcpu: The vCPU to act upon (all by default; since 2.7).
|
2016-07-11 10:53:57 +00:00
|
|
|
#
|
2023-05-26 16:53:56 +00:00
|
|
|
# Features:
|
2016-07-11 10:53:57 +00:00
|
|
|
#
|
2023-07-20 07:16:07 +00:00
|
|
|
# @deprecated: Member @vcpu is deprecated, and always ignored.
|
2014-08-25 11:19:57 +00:00
|
|
|
#
|
2016-11-17 15:54:55 +00:00
|
|
|
# Since: 2.2
|
2016-06-23 13:21:49 +00:00
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
#
|
2024-02-16 14:58:34 +00:00
|
|
|
# -> { "execute": "trace-event-set-state",
|
|
|
|
# "arguments": { "name": "qemu_memalign", "enable": true } }
|
|
|
|
# <- { "return": {} }
|
2014-08-25 11:19:57 +00:00
|
|
|
##
|
|
|
|
{ 'command': 'trace-event-set-state',
|
2016-07-11 10:53:57 +00:00
|
|
|
'data': {'name': 'str', 'enable': 'bool', '*ignore-unavailable': 'bool',
|
2023-05-26 16:53:56 +00:00
|
|
|
'*vcpu': {'type': 'int', 'features': ['deprecated'] } } }
|