diff options
| author | Dr. David Alan Gilbert | 2016-06-13 13:16:42 +0200 |
|---|---|---|
| committer | Amit Shah | 2016-06-16 06:20:07 +0200 |
| commit | d3bf5418e2c5cf0e911b51b7041caddae5e8b38a (patch) | |
| tree | 17c4f7eac546bb587d1490cf38b3913539a00762 /qapi-schema.json | |
| parent | Migration: Split out ram part of qmp_query_migrate (diff) | |
| download | qemu-d3bf5418e2c5cf0e911b51b7041caddae5e8b38a.tar.gz qemu-d3bf5418e2c5cf0e911b51b7041caddae5e8b38a.tar.xz qemu-d3bf5418e2c5cf0e911b51b7041caddae5e8b38a.zip | |
Postcopy: Add stats on page requests
On the source, add a count of page requests received from the
destination.
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Denis V. Lunev <den@openvz.org>
Message-id: 1465816605-29488-4-git-send-email-dgilbert@redhat.com
Message-Id: <1465816605-29488-4-git-send-email-dgilbert@redhat.com>
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Diffstat (limited to 'qapi-schema.json')
| -rw-r--r-- | qapi-schema.json | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 48c3a6f5cd..af0129a8d2 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -382,13 +382,17 @@ # # @dirty-sync-count: number of times that dirty ram was synchronized (since 2.1) # +# @postcopy-requests: The number of page requests received from the destination +# (since 2.7) +# # Since: 0.14.0 ## { 'struct': 'MigrationStats', 'data': {'transferred': 'int', 'remaining': 'int', 'total': 'int' , 'duplicate': 'int', 'skipped': 'int', 'normal': 'int', 'normal-bytes': 'int', 'dirty-pages-rate' : 'int', - 'mbps' : 'number', 'dirty-sync-count' : 'int' } } + 'mbps' : 'number', 'dirty-sync-count' : 'int', + 'postcopy-requests' : 'int' } } ## # @XBZRLECacheStats |
