mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
10 lines
172 B
Go
10 lines
172 B
Go
|
// +build linux darwin freebsd
|
||
|
|
||
|
package fs
|
||
|
|
||
|
import "golang.org/x/sys/unix"
|
||
|
|
||
|
func freeSpace(stat unix.Statfs_t) uint64 {
|
||
|
return uint64(stat.Bavail) * uint64(stat.Bsize)
|
||
|
}
|