block/copy-before-write: implement cbw-timeout option
[qemu/ar7.git] / qapi / stats.json
blob2f8bfe8fdb4201af4bdbad47df2730308176bbd8
1 # -*- Mode: Python -*-
2 # vim: filetype=python
4 # Copyright (c) 2022 Oracle and/or its affiliates.
6 # This work is licensed under the terms of the GNU GPL, version 2 or later.
7 # See the COPYING file in the top-level directory.
9 # SPDX-License-Identifier: GPL-2.0-or-later
12 # = Statistics
16 # @StatsType:
18 # Enumeration of statistics types
20 # @cumulative: stat is cumulative; value can only increase.
21 # @instant: stat is instantaneous; value can increase or decrease.
22 # @peak: stat is the peak value; value can only increase.
23 # @linear-histogram: stat is a linear histogram.
24 # @log2-histogram: stat is a logarithmic histogram, with one bucket
25 #                  for each power of two.
27 # Since: 7.1
29 { 'enum' : 'StatsType',
30   'data' : [ 'cumulative', 'instant', 'peak', 'linear-histogram',
31              'log2-histogram' ] }
34 # @StatsUnit:
36 # Enumeration of unit of measurement for statistics
38 # @bytes: stat reported in bytes.
39 # @seconds: stat reported in seconds.
40 # @cycles: stat reported in clock cycles.
42 # Since: 7.1
44 { 'enum' : 'StatsUnit',
45   'data' : [ 'bytes', 'seconds', 'cycles' ] }
48 # @StatsProvider:
50 # Enumeration of statistics providers.
52 # Since: 7.1
54 { 'enum': 'StatsProvider',
55   'data': [ 'kvm' ] }
58 # @StatsTarget:
60 # The kinds of objects on which one can request statistics.
62 # @vm: statistics that apply to the entire virtual machine or
63 #      the entire QEMU process.
65 # @vcpu: statistics that apply to a single virtual CPU.
67 # Since: 7.1
69 { 'enum': 'StatsTarget',
70   'data': [ 'vm', 'vcpu' ] }
73 # @StatsRequest:
75 # Indicates a set of statistics that should be returned by query-stats.
77 # @provider: provider for which to return statistics.
79 # @names: statistics to be returned (all if omitted).
81 # Since: 7.1
83 { 'struct': 'StatsRequest',
84   'data': { 'provider': 'StatsProvider',
85             '*names': [ 'str' ] } }
88 # @StatsVCPUFilter:
90 # @vcpus: list of QOM paths for the desired vCPU objects.
92 # Since: 7.1
94 { 'struct': 'StatsVCPUFilter',
95   'data': { '*vcpus': [ 'str' ] } }
98 # @StatsFilter:
100 # The arguments to the query-stats command; specifies a target for which to
101 # request statistics and optionally the required subset of information for
102 # that target:
103 # - which vCPUs to request statistics for
104 # - which providers to request statistics from
105 # - which named values to return within each provider
107 # Since: 7.1
109 { 'union': 'StatsFilter',
110   'base': {
111       'target': 'StatsTarget',
112       '*providers': [ 'StatsRequest' ] },
113   'discriminator': 'target',
114   'data': { 'vcpu': 'StatsVCPUFilter' } }
117 # @StatsValue:
119 # @scalar: single unsigned 64-bit integers.
120 # @list: list of unsigned 64-bit integers (used for histograms).
122 # Since: 7.1
124 { 'alternate': 'StatsValue',
125   'data': { 'scalar': 'uint64',
126             'list': [ 'uint64' ] } }
129 # @Stats:
131 # @name: name of stat.
132 # @value: stat value.
134 # Since: 7.1
136 { 'struct': 'Stats',
137   'data': { 'name': 'str',
138             'value' : 'StatsValue' } }
141 # @StatsResult:
143 # @provider: provider for this set of statistics.
145 # @qom-path: Path to the object for which the statistics are returned,
146 #            if the object is exposed in the QOM tree
148 # @stats: list of statistics.
150 # Since: 7.1
152 { 'struct': 'StatsResult',
153   'data': { 'provider': 'StatsProvider',
154             '*qom-path': 'str',
155             'stats': [ 'Stats' ] } }
158 # @query-stats:
160 # Return runtime-collected statistics for objects such as the
161 # VM or its vCPUs.
163 # The arguments are a StatsFilter and specify the provider and objects
164 # to return statistics about.
166 # Returns: a list of StatsResult, one for each provider and object
167 #          (e.g., for each vCPU).
169 # Since: 7.1
171 { 'command': 'query-stats',
172   'data': 'StatsFilter',
173   'boxed': true,
174   'returns': [ 'StatsResult' ] }
177 # @StatsSchemaValue:
179 # Schema for a single statistic.
181 # @name: name of the statistic; each element of the schema is uniquely
182 #        identified by a target, a provider (both available in @StatsSchema)
183 #        and the name.
185 # @type: kind of statistic.
187 # @unit: basic unit of measure for the statistic; if missing, the statistic
188 #        is a simple number or counter.
190 # @base: base for the multiple of @unit in which the statistic is measured.
191 #        Only present if @exponent is non-zero; @base and @exponent together
192 #        form a SI prefix (e.g., _nano-_ for ``base=10`` and ``exponent=-9``)
193 #        or IEC binary prefix (e.g. _kibi-_ for ``base=2`` and ``exponent=10``)
195 # @exponent: exponent for the multiple of @unit in which the statistic is
196 #            expressed, or 0 for the basic unit
198 # @bucket-size: Present when @type is "linear-histogram", contains the width
199 #               of each bucket of the histogram.
201 # Since: 7.1
203 { 'struct': 'StatsSchemaValue',
204   'data': { 'name': 'str',
205             'type': 'StatsType',
206             '*unit': 'StatsUnit',
207             '*base': 'int8',
208             'exponent': 'int16',
209             '*bucket-size': 'uint32' } }
212 # @StatsSchema:
214 # Schema for all available statistics for a provider and target.
216 # @provider: provider for this set of statistics.
218 # @target: the kind of object that can be queried through the provider.
220 # @stats: list of statistics.
222 # Since: 7.1
224 { 'struct': 'StatsSchema',
225   'data': { 'provider': 'StatsProvider',
226             'target': 'StatsTarget',
227             'stats': [ 'StatsSchemaValue' ] } }
230 # @query-stats-schemas:
232 # Return the schema for all available runtime-collected statistics.
234 # Note: runtime-collected statistics and their names fall outside QEMU's usual
235 #       deprecation policies.  QEMU will try to keep the set of available data
236 #       stable, together with their names, but will not guarantee stability
237 #       at all costs; the same is true of providers that source statistics
238 #       externally, e.g. from Linux.  For example, if the same value is being
239 #       tracked with different names on different architectures or by different
240 #       providers, one of them might be renamed.  A statistic might go away if
241 #       an algorithm is changed or some code is removed; changing a default
242 #       might cause previously useful statistics to always report 0.  Such
243 #       changes, however, are expected to be rare.
245 # Since: 7.1
247 { 'command': 'query-stats-schemas',
248   'data': { '*provider': 'StatsProvider' },
249   'returns': [ 'StatsSchema' ] }