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
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.
29 { 'enum' : 'StatsType',
30 'data' : [ 'cumulative', 'instant', 'peak', 'linear-histogram',
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.
41 # @boolean: stat is a boolean value.
45 { 'enum' : 'StatsUnit',
46 'data' : [ 'bytes', 'seconds', 'cycles', 'boolean' ] }
51 # Enumeration of statistics providers.
55 # @cryptodev: since 8.0
59 { 'enum': 'StatsProvider',
60 'data': [ 'kvm', 'cryptodev' ] }
65 # The kinds of objects on which one can request statistics.
67 # @vm: statistics that apply to the entire virtual machine or
68 # the entire QEMU process.
70 # @vcpu: statistics that apply to a single virtual CPU.
72 # @cryptodev: statistics that apply to a crypto device (since 8.0)
76 { 'enum': 'StatsTarget',
77 'data': [ 'vm', 'vcpu', 'cryptodev' ] }
82 # Indicates a set of statistics that should be returned by query-stats.
84 # @provider: provider for which to return statistics.
86 # @names: statistics to be returned (all if omitted).
90 { 'struct': 'StatsRequest',
91 'data': { 'provider': 'StatsProvider',
92 '*names': [ 'str' ] } }
97 # @vcpus: list of QOM paths for the desired vCPU objects.
101 { 'struct': 'StatsVCPUFilter',
102 'data': { '*vcpus': [ 'str' ] } }
107 # The arguments to the query-stats command; specifies a target for which to
108 # request statistics and optionally the required subset of information for
111 # - which vCPUs to request statistics for
112 # - which providers to request statistics from
113 # - which named values to return within each provider
117 { 'union': 'StatsFilter',
119 'target': 'StatsTarget',
120 '*providers': [ 'StatsRequest' ] },
121 'discriminator': 'target',
122 'data': { 'vcpu': 'StatsVCPUFilter' } }
127 # @scalar: single unsigned 64-bit integers.
128 # @list: list of unsigned 64-bit integers (used for histograms).
132 { 'alternate': 'StatsValue',
133 'data': { 'scalar': 'uint64',
135 'list': [ 'uint64' ] } }
140 # @name: name of stat.
141 # @value: stat value.
146 'data': { 'name': 'str',
147 'value' : 'StatsValue' } }
152 # @provider: provider for this set of statistics.
154 # @qom-path: Path to the object for which the statistics are returned,
155 # if the object is exposed in the QOM tree
157 # @stats: list of statistics.
161 { 'struct': 'StatsResult',
162 'data': { 'provider': 'StatsProvider',
164 'stats': [ 'Stats' ] } }
169 # Return runtime-collected statistics for objects such as the
172 # The arguments are a StatsFilter and specify the provider and objects
173 # to return statistics about.
175 # Returns: a list of StatsResult, one for each provider and object
176 # (e.g., for each vCPU).
180 { 'command': 'query-stats',
181 'data': 'StatsFilter',
183 'returns': [ 'StatsResult' ] }
188 # Schema for a single statistic.
190 # @name: name of the statistic; each element of the schema is uniquely
191 # identified by a target, a provider (both available in @StatsSchema)
194 # @type: kind of statistic.
196 # @unit: basic unit of measure for the statistic; if missing, the statistic
197 # is a simple number or counter.
199 # @base: base for the multiple of @unit in which the statistic is measured.
200 # Only present if @exponent is non-zero; @base and @exponent together
201 # form a SI prefix (e.g., _nano-_ for ``base=10`` and ``exponent=-9``)
202 # or IEC binary prefix (e.g. _kibi-_ for ``base=2`` and ``exponent=10``)
204 # @exponent: exponent for the multiple of @unit in which the statistic is
205 # expressed, or 0 for the basic unit
207 # @bucket-size: Present when @type is "linear-histogram", contains the width
208 # of each bucket of the histogram.
212 { 'struct': 'StatsSchemaValue',
213 'data': { 'name': 'str',
215 '*unit': 'StatsUnit',
218 '*bucket-size': 'uint32' } }
223 # Schema for all available statistics for a provider and target.
225 # @provider: provider for this set of statistics.
227 # @target: the kind of object that can be queried through the provider.
229 # @stats: list of statistics.
233 { 'struct': 'StatsSchema',
234 'data': { 'provider': 'StatsProvider',
235 'target': 'StatsTarget',
236 'stats': [ 'StatsSchemaValue' ] } }
239 # @query-stats-schemas:
241 # Return the schema for all available runtime-collected statistics.
243 # Note: runtime-collected statistics and their names fall outside QEMU's usual
244 # deprecation policies. QEMU will try to keep the set of available data
245 # stable, together with their names, but will not guarantee stability
246 # at all costs; the same is true of providers that source statistics
247 # externally, e.g. from Linux. For example, if the same value is being
248 # tracked with different names on different architectures or by different
249 # providers, one of them might be renamed. A statistic might go away if
250 # an algorithm is changed or some code is removed; changing a default
251 # might cause previously useful statistics to always report 0. Such
252 # changes, however, are expected to be rare.
256 { 'command': 'query-stats-schemas',
257 'data': { '*provider': 'StatsProvider' },
258 'returns': [ 'StatsSchema' ] }