Dump points per TSM point written

pull/5306/head
Philip O'Toole 2016-01-07 13:58:23 -08:00
parent 13d2b69c29
commit 2d2c315356
1 changed files with 1 additions and 0 deletions

View File

@ -215,6 +215,7 @@ func main() {
fmt.Printf("Disk usage pre-conversion (bytes): %d\n", preSize)
fmt.Printf("Disk usage post-conversion (bytes): %d\n", postSize)
fmt.Printf("Reduction factor: %d%%\n", (100*preSize-postSize)/preSize)
fmt.Printf("Bytes per TSM point: %.2f\n", float64(postSize)/float64(PointsWritten))
fmt.Printf("Total conversion time: %v\n", time.Now().Sub(conversionStart))
fmt.Println()
}