mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
20 lines
388 B
Go
20 lines
388 B
Go
|
package formatutil
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"math"
|
||
|
)
|
||
|
|
||
|
// HumanizeBytes returns human-readable representation of size in bytes with 1024 base.
|
||
|
func HumanizeBytes(size float64) string {
|
||
|
prefix := ""
|
||
|
for _, p := range []string{"ki", "Mi", "Gi", "Ti", "Pi", "Ei", "Zi", "Yi"} {
|
||
|
if math.Abs(size) < 1024 {
|
||
|
break
|
||
|
}
|
||
|
prefix = p
|
||
|
size /= 1024
|
||
|
}
|
||
|
return fmt.Sprintf("%.4g%s", size, prefix)
|
||
|
}
|