mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-24 08:45:13 +00:00
remove csize references from docs
This commit is contained in:
parent
75ad3b8e35
commit
1393e4f391
1 changed files with 5 additions and 13 deletions
|
@ -269,12 +269,8 @@ stats
|
||||||
Number of unique chunks
|
Number of unique chunks
|
||||||
total_size
|
total_size
|
||||||
Total uncompressed size of all chunks multiplied with their reference counts
|
Total uncompressed size of all chunks multiplied with their reference counts
|
||||||
total_csize
|
|
||||||
Total compressed and encrypted size of all chunks multiplied with their reference counts
|
|
||||||
unique_size
|
unique_size
|
||||||
Uncompressed size of all chunks
|
Uncompressed size of all chunks
|
||||||
unique_csize
|
|
||||||
Compressed and encrypted size of all chunks
|
|
||||||
|
|
||||||
.. highlight: json
|
.. highlight: json
|
||||||
|
|
||||||
|
@ -285,10 +281,8 @@ Example *borg info* output::
|
||||||
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
||||||
"stats": {
|
"stats": {
|
||||||
"total_chunks": 511533,
|
"total_chunks": 511533,
|
||||||
"total_csize": 17948017540,
|
|
||||||
"total_size": 22635749792,
|
"total_size": 22635749792,
|
||||||
"total_unique_chunks": 54892,
|
"total_unique_chunks": 54892,
|
||||||
"unique_csize": 1920405405,
|
|
||||||
"unique_size": 2449675468
|
"unique_size": 2449675468
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -424,10 +418,8 @@ The same archive with more information (``borg info --last 1 --json``)::
|
||||||
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
"path": "/home/user/.cache/borg/0cbe6166b46627fd26b97f8831e2ca97584280a46714ef84d2b668daf8271a23",
|
||||||
"stats": {
|
"stats": {
|
||||||
"total_chunks": 511533,
|
"total_chunks": 511533,
|
||||||
"total_csize": 17948017540,
|
|
||||||
"total_size": 22635749792,
|
"total_size": 22635749792,
|
||||||
"total_unique_chunks": 54892,
|
"total_unique_chunks": 54892,
|
||||||
"unique_csize": 1920405405,
|
|
||||||
"unique_size": 2449675468
|
"unique_size": 2449675468
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue