We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a17dcc + 5b6b718 commit 8cfb943Copy full SHA for 8cfb943
cmd/crictl/image.go
@@ -497,7 +497,8 @@ var imageFsInfoCommand = &cli.Command{
497
498
// otherwise output in table format
499
fmt.Printf("TimeStamp: %d\n", info.Timestamp)
500
- fmt.Printf("UsedBytes: %s\n", info.UsedBytes)
+ fmt.Printf("Disk: %s\n", units.HumanSize(float64(info.UsedBytes.GetValue())))
501
+ fmt.Printf("Inodes: %d\n", info.InodesUsed.GetValue())
502
fmt.Printf("Mountpoint: %s\n", info.FsId.Mountpoint)
503
}
504
0 commit comments