diff options
author | ChenLiang <chenliang88@huawei.com> | 2014-04-04 17:57:56 +0800 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2014-05-05 22:15:03 +0200 |
commit | 8bc3923343e91902ca541112b3bdb5448f8d288e (patch) | |
tree | 2f6a005134c54ba599e21675ea93e1f2d4fcc0ae /qapi-schema.json | |
parent | 58570ed894631904bcdbcd1e8b34479cebe2aae9 (diff) | |
download | qemu-8bc3923343e91902ca541112b3bdb5448f8d288e.tar.gz qemu-8bc3923343e91902ca541112b3bdb5448f8d288e.tar.bz2 qemu-8bc3923343e91902ca541112b3bdb5448f8d288e.zip |
migration: expose xbzrle cache miss rate
expose xbzrle cache miss rate
Signed-off-by: ChenLiang <chenliang88@huawei.com>
Signed-off-by: Gonglei <arei.gonglei@huawei.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 7b950393b4..36cb964dfd 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -674,13 +674,16 @@ # # @cache-miss: number of cache miss # +# @cache-miss-rate: rate of cache miss (since 2.1) +# # @overflow: number of overflows # # Since: 1.2 ## { 'type': 'XBZRLECacheStats', 'data': {'cache-size': 'int', 'bytes': 'int', 'pages': 'int', - 'cache-miss': 'int', 'overflow': 'int' } } + 'cache-miss': 'int', 'cache-miss-rate': 'number', + 'overflow': 'int' } } ## # @MigrationInfo |