mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
Change total_time to total-time in MigrationStats
migration total_time was introduced in commit
d5f8a5701d
for QEMU 1.2
Signed-off-by: Orit Wasserman <owasserm@redhat.com>
Reviewed-by: Luiz Capitulino <lcapitulino@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
9e1ba4cc4e
commit
62d4e3fe31
2 changed files with 9 additions and 4 deletions
|
@ -2122,6 +2122,9 @@ The main json-object contains the following:
|
|||
- "transferred": amount transferred (json-int)
|
||||
- "remaining": amount remaining (json-int)
|
||||
- "total": total (json-int)
|
||||
- "total-time": total amount of ms since migration started. If
|
||||
migration has ended, it returns the total migration time
|
||||
(json-int)
|
||||
- "disk": only present if "status" is "active" and it is a block migration,
|
||||
it is a json-object with the following disk information (in bytes):
|
||||
- "transferred": amount transferred (json-int)
|
||||
|
@ -2154,7 +2157,8 @@ Examples:
|
|||
"ram":{
|
||||
"transferred":123,
|
||||
"remaining":123,
|
||||
"total":246
|
||||
"total":246,
|
||||
"total-time":12345
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2168,7 +2172,8 @@ Examples:
|
|||
"ram":{
|
||||
"total":1057024,
|
||||
"remaining":1053304,
|
||||
"transferred":3720
|
||||
"transferred":3720,
|
||||
"total-time":12345
|
||||
},
|
||||
"disk":{
|
||||
"total":20971520,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue