]> git.proxmox.com Git - mirror_qemu.git/commit - qapi/stats.json
qmp: add filtering of statistics by provider
authorPaolo Bonzini <pbonzini@redhat.com>
Tue, 26 Apr 2022 09:49:33 +0000 (11:49 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 14 Jun 2022 14:50:30 +0000 (16:50 +0200)
commit068cc51d42f771d2a453d628c10e199e7d104edd
treee89f2af7614e6975703837af8c2f3bc7137ec80c
parent433815f5bdf71b5b2c47d9f1104816b95b551c49
qmp: add filtering of statistics by provider

Allow retrieving the statistics from a specific provider only.
This can be used in the future by HMP commands such as "info
sync-profile" or "info profile".  The next patch also adds
filter-by-provider capabilities to the HMP equivalent of
query-stats, "info stats".

Example:

{ "execute": "query-stats",
  "arguments": {
    "target": "vm",
    "providers": [
      { "provider": "kvm" } ] } }

The QAPI is a bit more verbose than just a list of StatsProvider,
so that it can be subsequently extended with filtering of statistics
by name.

If a provider is specified more than once in the filter, each request
will be included separately in the output.

Extracted from a patch by Mark Kanda.

Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
accel/kvm/kvm-all.c
include/monitor/stats.h
monitor/hmp-cmds.c
monitor/qmp-cmds.c
qapi/stats.json