2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-12 22:02:23 +00:00

stats: Show what was scanned and scanning mode used

This commit is contained in:
Matthew Holt 2018-08-17 17:15:30 -06:00
parent 49d95e9a50
commit 2d89311d49

View File

@ -81,6 +81,10 @@ func runStats(gopts GlobalOptions, args []string) error {
} }
} }
if !gopts.JSON {
Printf("scanning...\n")
}
// create a container for the stats (and other needed state) // create a container for the stats (and other needed state)
stats := &statsContainer{ stats := &statsContainer{
uniqueFiles: make(map[fileID]struct{}), uniqueFiles: make(map[fileID]struct{}),
@ -145,6 +149,15 @@ func runStats(gopts GlobalOptions, args []string) error {
return nil return nil
} }
// inform the user what was scanned and how it was scanned
snapshotsScanned := snapshotIDString
if snapshotsScanned == "latest" {
snapshotsScanned = "the latest snapshot"
} else if snapshotsScanned == "" {
snapshotsScanned = "all snapshots"
}
Printf("Stats for %s in %s mode:\n", snapshotsScanned, countMode)
if stats.TotalBlobCount > 0 { if stats.TotalBlobCount > 0 {
Printf(" Total Blob Count: %d\n", stats.TotalBlobCount) Printf(" Total Blob Count: %d\n", stats.TotalBlobCount)
} }