Merge tag 'v9.0.0-rc3'
[qemu/ar7.git] / qapi / stats.json
blob578b52c7ef747857f6bde8b5b2a28d36e0236a68
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.
22 # @instant: stat is instantaneous; value can increase or decrease.
24 # @peak: stat is the peak value; value can only increase.
26 # @linear-histogram: stat is a linear histogram.
28 # @log2-histogram: stat is a logarithmic histogram, with one bucket
29 #     for each power of two.
31 # Since: 7.1
33 { 'enum' : 'StatsType',
34   'data' : [ 'cumulative', 'instant', 'peak', 'linear-histogram',
35              'log2-histogram' ] }
38 # @StatsUnit:
40 # Enumeration of unit of measurement for statistics
42 # @bytes: stat reported in bytes.
44 # @seconds: stat reported in seconds.
46 # @cycles: stat reported in clock cycles.
48 # @boolean: stat is a boolean value.
50 # Since: 7.1
52 { 'enum' : 'StatsUnit',
53   'data' : [ 'bytes', 'seconds', 'cycles', 'boolean' ] }
56 # @StatsProvider:
58 # Enumeration of statistics providers.
60 # @kvm: since 7.1
62 # @cryptodev: since 8.0
64 # Since: 7.1
66 { 'enum': 'StatsProvider',
67   'data': [ 'kvm', 'cryptodev' ] }
70 # @StatsTarget:
72 # The kinds of objects on which one can request statistics.
74 # @vm: statistics that apply to the entire virtual machine or the
75 #     entire QEMU process.
77 # @vcpu: statistics that apply to a single virtual CPU.
79 # @cryptodev: statistics that apply to a crypto device (since 8.0)
81 # Since: 7.1
83 { 'enum': 'StatsTarget',
84   'data': [ 'vm', 'vcpu', 'cryptodev' ] }
87 # @StatsRequest:
89 # Indicates a set of statistics that should be returned by
90 # query-stats.
92 # @provider: provider for which to return statistics.
94 # @names: statistics to be returned (all if omitted).
96 # Since: 7.1
98 { 'struct': 'StatsRequest',
99   'data': { 'provider': 'StatsProvider',
100             '*names': [ 'str' ] } }
103 # @StatsVCPUFilter:
105 # @vcpus: list of QOM paths for the desired vCPU objects.
107 # Since: 7.1
109 { 'struct': 'StatsVCPUFilter',
110   'data': { '*vcpus': [ 'str' ] } }
113 # @StatsFilter:
115 # The arguments to the query-stats command; specifies a target for
116 # which to request statistics and optionally the required subset of
117 # information for that target.
119 # @target: the kind of objects to query.  Note that each possible
120 #          target may enable additional filtering options
122 # @providers: which providers to request statistics from, and optionally
123 #             which named values to return within each provider
125 # Since: 7.1
127 { 'union': 'StatsFilter',
128   'base': {
129       'target': 'StatsTarget',
130       '*providers': [ 'StatsRequest' ] },
131   'discriminator': 'target',
132   'data': { 'vcpu': 'StatsVCPUFilter' } }
135 # @StatsValue:
137 # @scalar: single unsigned 64-bit integers.
139 # @boolean: single boolean value.
141 # @list: list of unsigned 64-bit integers (used for histograms).
143 # Since: 7.1
145 { 'alternate': 'StatsValue',
146   'data': { 'scalar': 'uint64',
147             'boolean': 'bool',
148             'list': [ 'uint64' ] } }
151 # @Stats:
153 # @name: name of stat.
155 # @value: stat value.
157 # Since: 7.1
159 { 'struct': 'Stats',
160   'data': { 'name': 'str',
161             'value' : 'StatsValue' } }
164 # @StatsResult:
166 # @provider: provider for this set of statistics.
168 # @qom-path: Path to the object for which the statistics are returned,
169 #     if the object is exposed in the QOM tree
171 # @stats: list of statistics.
173 # Since: 7.1
175 { 'struct': 'StatsResult',
176   'data': { 'provider': 'StatsProvider',
177             '*qom-path': 'str',
178             'stats': [ 'Stats' ] } }
181 # @query-stats:
183 # Return runtime-collected statistics for objects such as the VM or
184 # its vCPUs.
186 # The arguments are a StatsFilter and specify the provider and objects
187 # to return statistics about.
189 # Returns: a list of StatsResult, one for each provider and object
190 #     (e.g., for each vCPU).
192 # Since: 7.1
194 { 'command': 'query-stats',
195   'data': 'StatsFilter',
196   'boxed': true,
197   'returns': [ 'StatsResult' ] }
200 # @StatsSchemaValue:
202 # Schema for a single statistic.
204 # @name: name of the statistic; each element of the schema is uniquely
205 #     identified by a target, a provider (both available in
206 #     @StatsSchema) and the name.
208 # @type: kind of statistic.
210 # @unit: basic unit of measure for the statistic; if missing, the
211 #     statistic is a simple number or counter.
213 # @base: base for the multiple of @unit in which the statistic is
214 #     measured.  Only present if @exponent is non-zero; @base and
215 #     @exponent together form a SI prefix (e.g., _nano-_ for
216 #     ``base=10`` and ``exponent=-9``) or IEC binary prefix (e.g.
217 #     _kibi-_ for ``base=2`` and ``exponent=10``)
219 # @exponent: exponent for the multiple of @unit in which the statistic
220 #     is expressed, or 0 for the basic unit
222 # @bucket-size: Present when @type is "linear-histogram", contains the
223 #     width of each bucket of the histogram.
225 # Since: 7.1
227 { 'struct': 'StatsSchemaValue',
228   'data': { 'name': 'str',
229             'type': 'StatsType',
230             '*unit': 'StatsUnit',
231             '*base': 'int8',
232             'exponent': 'int16',
233             '*bucket-size': 'uint32' } }
236 # @StatsSchema:
238 # Schema for all available statistics for a provider and target.
240 # @provider: provider for this set of statistics.
242 # @target: the kind of object that can be queried through the
243 #     provider.
245 # @stats: list of statistics.
247 # Since: 7.1
249 { 'struct': 'StatsSchema',
250   'data': { 'provider': 'StatsProvider',
251             'target': 'StatsTarget',
252             'stats': [ 'StatsSchemaValue' ] } }
255 # @query-stats-schemas:
257 # Return the schema for all available runtime-collected statistics.
259 # @provider: a provider to restrict the query to.
261 # Note: runtime-collected statistics and their names fall outside
262 #     QEMU's usual deprecation policies.  QEMU will try to keep the
263 #     set of available data stable, together with their names, but
264 #     will not guarantee stability at all costs; the same is true of
265 #     providers that source statistics externally, e.g. from Linux.
266 #     For example, if the same value is being tracked with different
267 #     names on different architectures or by different providers, one
268 #     of them might be renamed.  A statistic might go away if an
269 #     algorithm is changed or some code is removed; changing a default
270 #     might cause previously useful statistics to always report 0.
271 #     Such changes, however, are expected to be rare.
273 # Since: 7.1
275 { 'command': 'query-stats-schemas',
276   'data': { '*provider': 'StatsProvider' },
277   'returns': [ 'StatsSchema' ] }