Fix JSON exampe in progress-frequency option.

This commit is contained in:
Milan Broz
2024-02-20 14:44:18 +01:00
parent 3ff8d55a8b
commit cbf818a660
2 changed files with 4 additions and 4 deletions

View File

@@ -575,11 +575,11 @@ progress (except it's compact single line):
+
....
{
"device":"/dev/sda" // backing device or file
"device":"/dev/sda", // backing device or file
"device_bytes":"8192", // bytes of I/O so far
"device_size":"44040192", // total bytes of I/O to go
"speed":"126877696", // calculated speed in bytes per second (based on progress so far)
"eta_ms":"2520012" // estimated time to finish an operation in milliseconds
"eta_ms":"2520012", // estimated time to finish an operation in milliseconds
"time_ms":"5561235" // total time spent in IO operation in milliseconds
}
....

View File

@@ -100,11 +100,11 @@ wipe progress (except it's compact single line):
+
....
{
"device":"/dev/sda" // backing device or file
"device":"/dev/sda", // backing device or file
"device_bytes":"8192", // bytes wiped so far
"device_size":"44040192", // total bytes to wipe
"speed":"126877696", // calculated speed in bytes per second (based on progress so far)
"eta_ms":"2520012" // estimated time to finish wipe in milliseconds
"eta_ms":"2520012", // estimated time to finish wipe in milliseconds
"time_ms":"5561235" // total time spent wiping device in milliseconds
}
....