mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
migration: print expected downtime in info migrate
Signed-off-by: Juan Quintela <quintela@redhat.com>
This commit is contained in:
parent
859bc7569a
commit
2c52ddf1cb
6 changed files with 20 additions and 0 deletions
|
@ -2306,6 +2306,9 @@ The main json-object contains the following:
|
|||
time (json-int)
|
||||
- "downtime": only present when migration has finished correctly
|
||||
total amount in ms for downtime that happened (json-int)
|
||||
- "expected-downtime": only present while migration is active
|
||||
total amount in ms for downtime that was calculated on
|
||||
the last bitmap round (json-int)
|
||||
- "ram": only present if "status" is "active", it is a json-object with the
|
||||
following RAM information (in bytes):
|
||||
- "transferred": amount transferred (json-int)
|
||||
|
@ -2367,6 +2370,7 @@ Examples:
|
|||
"remaining":123,
|
||||
"total":246,
|
||||
"total-time":12345,
|
||||
"expected-downtime":12345,
|
||||
"duplicate":123,
|
||||
"normal":123,
|
||||
"normal-bytes":123456
|
||||
|
@ -2385,6 +2389,7 @@ Examples:
|
|||
"remaining":1053304,
|
||||
"transferred":3720,
|
||||
"total-time":12345,
|
||||
"expected-downtime":12345,
|
||||
"duplicate":123,
|
||||
"normal":123,
|
||||
"normal-bytes":123456
|
||||
|
@ -2409,6 +2414,7 @@ Examples:
|
|||
"remaining":1053304,
|
||||
"transferred":3720,
|
||||
"total-time":12345,
|
||||
"expected-downtime":12345,
|
||||
"duplicate":10,
|
||||
"normal":3333,
|
||||
"normal-bytes":3412992
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue